【发布时间】:2020-10-15 00:14:58
【问题描述】:
只是想知道如何删除导航中的(后退)文本并仅使用箭头进行导航我正在使用 react native expo。
<Stack.Screen
name="ChatRoom"
component={ChatRoomScreen}
options={({route}) => ({
title: route.params.name,
headerRight: () => (
<View
style={{
flexDirection: "row",
width: 100,
justifyContent: "space-between",
marginRight: 10,
}}
>
<MaterialIcons name="call" size={22} color={'white'} />
<FontAwesome5 name="video" size={22} color={'white'} />
<MaterialCommunityIcons name="dots-vertical" size={22} color={'white'}/>
</View>
)
})}
/>
【问题讨论】:
标签: reactjs react-native react-native-android react-navigation react-native-navigation