我想使用堆栈导航器中的通用标题按钮导航到特定屏幕。
<NavigationContainer>
<RootStack.Navigator
mode="modal"
screenOptions={{
headerTitleAlign: 'center',
headerTitle: () => <SpreeLogo />,
headerRight: (props) => <MaterialIcons style={{
marginHorizontal: 10,
}}
onPress={() => console.log(props)}
name="clear" size={28} color="black" />
}}
>
Run Code Online (Sandbox Code Playgroud)
在标题右侧图标中,我想访问导航道具。我试过控制台记录道具,但没有道具作为导航。如何访问它?