0

无论如何,react-native-tab-view 在它可见/单击之前不会渲染选项卡?

链接:https ://github.com/react-native-community/react-native-tab-view

4

1 回答 1

2

如果有帮助,我做了这样的事情:

renderScene = ({ route }) => {
if (route.key == 'scene0' && this.state.index == 0) {
  return <Scene0 />;
}
if (route.key == 'scene1' && this.state.index == 1) {
  return <Scene1 />;
}
if (route.key == 'scene2' && this.state.index == 2) {
  return <Scene2 />;
}

这允许我做的是控制何时安装组件,仅当屏幕处于活动状态时。

于 2018-10-16T20:47:01.040 回答