react-navigation版本已经成了2.0了能否再详细讲解下?
来源:2-3 StackNavigator精讲-2
sdzqnt
2018-09-16
react-navigation版本已经成了2.0了能否再详细讲解下?
写回答
1回答
-
CrazyCodeBoy
2018-09-17
react-navigation2.0变化不大:
主要变更如下:
DrawerNavigator, StackNavigator, TabNavigator改为createDrawerNavigator, createStackNavigator,createBottomTabNavigator
const {routes, index} = this.props.navigationState;改为const {routes, index} = this.props.navigation.state;
TabBarBottom改为BottomTabBar
可参考:
00
相似问题