By default, Scrim covers the entire background area and centers its content.
<Scrim
backgroundSlot={
<View aspectRatio={16 / 9}>
<Image src="/img/examples/image-retina.webp" width="100%" />
</View>
}
>
Scrim content
</Scrim>
The position property allows you to control the side where the content is rendered.
<Scrim
position="bottom"
backgroundSlot={
<View aspectRatio={16 / 9}>
<Image src="/img/examples/image-retina.webp" width="100%" />
</View>
}
>
<Text variant="featured-3" weight="bold">
Image title
</Text>
</Scrim>
Without the backgroundSlot, Scrim becomes absolutely positioned and occupies the full width and height of the parent element.
<View
height="300px"
backgroundColor="positive"
borderRadius="large"
overflow="hidden"
position="relative"
>
<Scrim>Scrim content</Scrim>
</View>