использовать https://github.com/dabit3/react-native-navigation-v2 как мне его использовать? Пишу в index.js
`import {AppRegistry} from 'react-native';
import {Navigation} from 'react-native-navigation';
import {registerScreens} from './src/screens';
registerScreens();
Navigation.events().registerAppLaunchedListener(() => {
Navigation.setRoot({
root: {
component: {
name: 'Initializing'
}
},
});
});
AppRegistry.registerComponent('Test', () => Navigation);`
А мне ошибку выбивает Module AppRegistry is not registered callable module (calling runApplication)
Как зарегистрировать этот AppRegistry?
может дело в том что AppRegistry.registerComponent('Test', () => Navigation); компонент регистрируется после того как стартует сам навигатор?
Обсуждают сегодня