更新到版本2.x后反应导航标签栏不起作用

问题描述 投票:0回答:1

在更新本机反应和反应导航后,我的标签栏停止导航到不同的屏幕。这打破了所有三个:createTabNavigatorcreateBottomTabNavigatorcreateMaterialBottomTabNavigator

javascript react-native react-navigation
1个回答
0
投票

它停止工作的原因是我压倒了其API改变的tabBarOnPress

tabBarOnPresscreateBottomTabNavigatorcreateMaterialBottomTabNavigator的新API传递一个对象作为包含defaultHandler的参数。当覆盖tabBarOnPress时需要调用它。

e.f.:

tabBarOnPress: obj => {
  // ... do your custom stuff
  obj.defaultHandler() // <- this handles navigation etc.
}
© www.soinside.com 2019 - 2024. All rights reserved.