Add custom icon to drawer navigation
问题 I am trying to add custom icon to my CustomDrawerComponent, but nothing happen... App.js : const navigationOptions = { headerTintColor: colors.white, }; const drawerNavigationOption = ({ navigation }) => ({ ...navigationOptions, headerLeft: ( <TouchableOpacity onPress={() => navigation.toggleDrawer()}> <View> <Icon name="menu" size={24} color={colors.white} /> </View> </TouchableOpacity> ), }); const MapsStackNavigator = createStackNavigator({ MapsNavigator: { screen: MapsScreen,