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 
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']}

