I need to show an image which the view is in grey color. (i.e) entire screen need to show the grey not the background alone above the image also needs to change. I am using react-native-fast-image package
Asked
Active
Viewed 1,051 times
1 Answers
0
You might need to add progressive image to do that. Use a small sized image lets say of 2kb to show initially till the image has not loaded and when the image loads up show the original image.
This is exactly what you are looking for. : )

Rishav Kumar
- 4,979
- 1
- 17
- 32
-
Here I need not to show any blurred image while loading. I need to show the exact image with the overlay change. So the image quality is good and above the image it have the loading icon. – sejn Aug 09 '19 at 08:59
-
Render the same image as progressive with low resolution . Use `ImageBackground` to add a spinner also over that. Note - Only `Image` wont allow you to add a spinner. And then use the function of onLoadEnd to show the original image. https://facebook.github.io/react-native/docs/image#onloadstart – Rishav Kumar Aug 09 '19 at 09:03