小编Mo *_*hen的帖子

在React-native中,如何更改NavigatorIOS的样式

在react-native中,如何更改NavigatorIOS的样式,例如backgroundColor?谢谢!

var speedNews = React.createClass({
  render: function() {
    return (
      <NavigatorIOS style={styles.container} 
      initialRoute={{ 
        title: 'SpeedNews',
        component: ViewList
      }}/>
    );
  }
});

var styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor : 'red', // it do nothing
    color : '#ffffff' // it do nothing
  }
});
Run Code Online (Sandbox Code Playgroud)

ios react-native

12
推荐指数
2
解决办法
5259
查看次数

标签 统计

ios ×1

react-native ×1