反应天然路由器通量道具未通过动作



我正在尝试从我的按钮传递一些数据

   <Button
                text="Explore"
                elementStyles={secondaryButton}
                onPress={() => Actions.dashboard({
                  demoMode: true,
                })}
                testID="button-explore"
              />

位于example.js中,to dashboard.js

这是我的路由器堆栈,位于app.js

<Stack key="root" hideNavBar>
              <Scene key="splash" initial component={SplashScreen} />
              ....
              <Scene key="example" component={example} />
              ....
              <Tabs key="tabbar" hideNavBar tabBarPosition="bottom" showLabel={false} tabBarStyle={styles.tabBar} swipeEnabled={false} animationEnabled={false}>
                <Scene key="dashboard" hideNavBar title="Dashboard" component={Dashboard} icon={TabBarItem} defaultIcon={Config.HOME_ICON_NAME} />
                <Scene key="history" hideNavBar title="Stats" component={History} icon={TabBarItem} defaultIcon={Config.STATS_ICON_NAME} />
                <Scene key="rewards" hideNavBar title="Points" component={Rewards} icon={TabBarItem} defaultIcon={Config.REWARDS_ICON_NAME} />
                <Scene key="profile" hideNavBar title="Profile" component={Profile} icon={TabBarItem} defaultIcon={Config.PROFILE_ICON_NAME} />
              </Tabs>
 />
            </Stack>

当我在仪表板下调用this.props.demomode时,我会变得不确定。

嗨,尝试添加_ be d b for第二屏幕键

onPress={() => Actions._dashboard({
              demoMode: true,
            })}

类似的东西,但是如果它不起作用,请删除您的节点模块文件夹更改路由器通量版本,npm i再次,您会很好

相关内容

  • 没有找到相关文章

最新更新