Tabbed navigation that you can swipe between, each tab can have its own ScrollView and maintain its own scroll position between swipes. Pleasantly animated. Customizable tab bar
children (ReactComponents) - each top-level child component should have a tabLabel prop that can be used by the tab bar component to render out the labels. The default tab bar expects it to be a string, but you can use anything you want if you make a custom tab bar.
when i change tab , the child component doesnot run
componentWillUnmount(){
Alert.alert("ddd");
}
this always render a new instance ,so ,it caused many problem,such as this
the old instance is still not be released,how to fix it?
when i change tab , the child component doesnot run
this always render a new instance ,so ,it caused many problem,such as this the old instance is still not be released,how to fix it?