我很好奇是否可以使用组件代替 react-native-navigation-v2 底部选项卡中的图标属性。
例子:
bottomTab: {
text: 'Profile',
icon: <Image source={{uri: 'myUrlHere'}} style={styles.someStyle}/>,
textColor: '#fff',
}
Example2 使用 react-native-elements Avatar 组件:
bottomTab: {
text: 'Profile',
icon: <Avatar rounded source={{uri: 'myUrlHere'}}/>,
textColor: '#fff',
}
如果之前已经发布过,请原谅我,我只是在搜索中找不到它。