We had 'react-native-fast-image' version "8.6.3" in our code base
Before: The tintColor was passed as a prop directly to the FastImage component. This is being removed from the props and being applied directly in the style.
<FastImage
tintColor={'red'}//remove this line
resizeMode={FastImage.resizeMode.contain}
source={require('images/home.png')}
style={{
priority: FastImage.priority.normal,
width: iconSize,
height: iconSize,
}}
/>
After: The tintColor is now directly included in the style object of the FastImage component.
<FastImage
resizeMode={FastImage.resizeMode.contain}
source={require('images/home.png')}
style={{
priority: FastImage.priority.normal,
width: iconSize,
height: iconSize,
tintColor:'red'//add here
}}
/>