Hi !
I would like to fixed an image, and a linear gradient as well, on a dedicate view inside the scrollview component. I tried with some styles, but each times, the image scroll with content.
What can I do ?
<ScrollView>
{/* TODO: Prevent scroll for this View — Add blur image on background */}
<View>
<Image source={{ uri: cover_photo }} />
<LinearGradient />
</View>
{/* This view is scrollable ABOVE the background image */}
<View>
{…content}
</View>
</ScrollView>
Hi !
I would like to fixed an image, and a linear gradient as well, on a dedicate view inside the scrollview component. I tried with some styles, but each times, the image scroll with content.
What can I do ?