I'm using new V2 of react-native-navigation, when I'm use back icons and right top bar button icons, I't works fine on android devices, but with IOS I'm not getting the image, only the blue circle.
These are the codes use generate top bar icons
//right button
static options(passProps) {
return {
topBar: {
leftButtons: [
],
rightButtons: [
{
id: 'settings',
icon: require('../assets/images/symbols/settings.png'),
disableIconTint: true
}
],
}
};
}
I'm new to react native and can someone found this issue can guide me, Thanks.