美文网首页
RN使用react-native

RN使用react-native

作者: 默默学习 | 来源:发表于2019-03-08 17:02 被阅读0次

最新版导航栏代码

const navPart = {

  headerStyle: {
    backgroundColor: Keys.navColor,
  },
  headerTintColor: Keys.titleTextColor,
  headerTitleStyle: {
    fontSize: 18,
  },
}


const NewTab = createStackNavigator({
     Home: {
       screen: MainJS,
       navigationOptions: navPart,
     },
      Datajs: {
        screen: DataJS,
        navigationOptions: navPart,
      },
      Setjs: {
        screen: SetJS,
        navigationOptions: navPart,
      },

},
    {
      initialRouteName: 'Home',
    }
);


const AppNew = createAppContainer(NewTab);

相关文章

网友评论

      本文标题:RN使用react-native

      本文链接:https://www.haomeiwen.com/subject/ccxdpqtx.html