小编Viv*_*jan的帖子

如何访问 Stack Navigator 的 screenOptions 属性中的导航道具?

我想使用堆栈导航器中的通用标题按钮导航到特定屏幕。

 <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)

在标题右侧图标中,我想访问导航道具。我试过控制台记录道具,但没有道具作为导航。如何访问它?

reactjs react-native react-navigation

2
推荐指数
1
解决办法
963
查看次数

标签 统计

react-native ×1

react-navigation ×1

reactjs ×1