我很好奇是否可以使用组件代替react-native-navigation-v2底部标签中的icon属性。
示例:
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',
}
如果此事以前发布过,请原谅,我只是在搜索中找不到它。