I have some code like this throughout my app:
<Image
style={{width: 50, height: 50, tintColor: 'yellow'}}
source={fabicon}
/>
This is working fine on Android and on iOS <15. However, the tintColor is not applied to any of my icons on iOS 15.
I am on React Native version 0.62.2.
Can anyone let me know how I can apply tint color to images on iOS 15 (and above)? If I can't, do I make separate images for every color I want an image to be? I could use SVGs, but that also is not an option for every scenario in my app.