React Native 实现页面动态切换

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了React Native 实现页面动态切换相关的知识,希望对你有一定的参考价值。

第一步. 初始化子View

constructor(props){
  super(props);
  this.state = {

    isChange : true,
    itemView : (<Text>测试1</Text>),
  }
};

 

第二步. 在render中

<View style={{flex:Util.ScreenHeight-128,justifyContent: ‘flex-start‘,}}>
  {this.state.itemView}
</View>

 

第三步. 在触发事件中动态设置state

let itemView;

var isChange = !this.state.isChange;
if (isChange) {
  itemView = (<Text>测试1</Text>);
} else{
  itemView = (<Text>测试2</Text>);
};
this.setState({
  isChange : isChange,
  itemView : itemView,
});

以上是关于React Native 实现页面动态切换的主要内容,如果未能解决你的问题,请参考以下文章

[技术博客]react native事件监听与原生通信——实现对通知消息的响应

REACT NATIVE 系列教程之八不使用NAVIGATOR实现切换(页面)场景的两种形式(逻辑与MODAL)

SyntaxError - node_modules/react-native/Libraries/polyfills/error-guard.js:缺少分号。 (14:4) 在 react nati

Tabview 在 react-native 中作为粘性标题

REACT NATIVE 系列教程之八不使用NAVIGATOR实现切换(页面)场景的两种形式(逻辑与MODAL)

react-native-tab-view的两个问题记录