我正在使用React Native Vector图标显示工具栏上的操作图标。但这似乎不起作用。
进口&图标
import Icon from 'react-native-vector-icons/FontAwesome';
const myIcon = (<Icon name="compass" size={30} color="#900" />)
主视图
<View style={styles.containerToolbar}>
<ToolbarAndroid style={styles.toolbar}
title="Test"
actions={toolbarActions}
onActionSelected={this.onActionSelected}>
</ToolbarAndroid>
</View>
var toolbarActions = [
{title: 'Compass', icon:{myIcon} show: 'always'}
];
您可以设置这样的动作图标 -
var toolbarActions = [
{title:'Compass', iconName:'compass', iconColor:"#900", iconSize:30, show:'always'}
];
此外,您需要使用Icon.ToolbarAndroid
而不是ToolbarAndroid
。
<Icon.ToolbarAndroid
actions={toolbarActions}
....
>
更多详细信息 - https://github.com/oblador/reeact-native-native-vector-icons#usage-with-with-toolbarandroid