react-native-navigation的迁移库

app.js 351B

12345678910111213141516171819
  1. const Navigation = require('react-native-navigation');
  2. const { registerContainers } = require('./containers');
  3. function start() {
  4. registerContainers();
  5. Navigation.events().onAppLaunched(() => {
  6. Navigation.setRoot({
  7. container: {
  8. name: 'navigation.playground.WelcomeScreen'
  9. }
  10. });
  11. });
  12. }
  13. module.exports = {
  14. start
  15. };