Skip to content Skip to sidebar Skip to footer

Renaming React Native Example App

So I am trying to work from this example App: https://github.com/aksonov/react-native-router-flux/tree/master/Example But when I rename the following lines: index.ios.js import App

Solution 1:

  1. Change the name attribute in package.json
  2. run react-native upgrade
  3. change your Appregistry AppRegistry.registerComponent('MyApp', () => MyApp);

Post a Comment for "Renaming React Native Example App"