Home > Software engineering >  Image fades into background React Native
Image fades into background React Native

Time:01-05

I am making a react native app, and I'm having trouble getting an image to fade at the edges so that it blends into the background. I want it to look like the Netflix app, where the image doesn't end, but just fades into black enter image description here

CodePudding user response:

Render Linear gradient absolutely above the image

also the colors should not be white, if you want the transparent color then use #00000000 to give transparent gradient

colors={['#000000', '#00000000', '#000000']}

2

  •  Tags:  
  • Related