You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 2, 2019. It is now read-only.
The question is in the title : I used this module when I started my project, 5 months ago, but now, I want to upgrade my project to React Native v0.11.0 with a similar module (so I won't change all my code).
What do I mean by "similar" ?
Something like this : var homePage = { title: 'MyApp', component: HomePage }; var MyApp = React.createClass({ render: function(){ return ( <NavigatorIOS barTintColor="#00bf6c" titleTextColor="#fff" tintColor="#fff" style={styles.container} initialRoute={homePage} /> ) } });
The question is in the title : I used this module when I started my project, 5 months ago, but now, I want to upgrade my project to React Native v0.11.0 with a similar module (so I won't change all my code).
What do I mean by "similar" ?
Something like this :
var homePage = { title: 'MyApp', component: HomePage }; var MyApp = React.createClass({ render: function(){ return ( <NavigatorIOS barTintColor="#00bf6c" titleTextColor="#fff" tintColor="#fff" style={styles.container} initialRoute={homePage} /> ) } });Any ideas ?