组件不会在NavigatorIOS – React Native中呈现

前端之家收集整理的这篇文章主要介绍了组件不会在NavigatorIOS – React Native中呈现前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我不能得到这个简单的NavigatorIOS测试工作。控制台登录在我的视图触发器,如果​​我跳过NavigatorIOS组件,我可以让它渲染,并直接渲染MyView。但是,当MyView从NavigatorIOS组件中的组件触发时,它不会呈现“My NavigatorIOS test”以外的任何内容
var React = require('react-native');
var {
  AppRegistry,StyleSheet,NavigatorIOS,Text,View,} = React;


 var navigation = React.createClass ({
  render: function() {
    return (
      <NavigatorIOS
            initialRoute={{
              component: MyView,title: 'My NavigatorIOS test',passProps: { myProp: 'foo' },}}/>
    );
  },});


var MyView = React.createClass({
  render: function(){
    console.log('My View render triggered');
    return (
        <View style={styles.container}>
        <Text style={styles.welcome}>
          Hello there,welcome to My View
        </Text>
      </View>
    );
  }
});


var styles = StyleSheet.create({
  container: {
    flex: 1,justifyContent: 'center',alignItems: 'center',backgroundColor: '#F5FCFF',},welcome: {
    fontSize: 20,textAlign: 'center',margin: 10,}
});


AppRegistry.registerComponent('navigation',() => navigation);
我有一个类似的问题。我在样式表中添加了以下内容
...
wrapper: {
  flex: 1,}...

然后给NavigatorIOS组件包装器样式。这固定了问题。

原文链接:https://www.f2er.com/react/302651.html

猜你在找的React相关文章