This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Description
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 ?