-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.js
33 lines (32 loc) · 899 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/**
* @format
*/
import { Navigation } from "react-native-navigation";
import App from './App';
import AR from './js';
import ARDrivingCarDemo from './js/ARDrivingCarDemo';
Navigation.registerComponent('com.virocommunity.demo.main', () => App);
Navigation.registerComponent('com.virocommunity.demo.ar', () => AR);
Navigation.registerComponent('com.virocommunity.demo.ar.driving', () => ARDrivingCarDemo);
Navigation.events().registerAppLaunchedListener(() => {
Navigation.setRoot({
root: {
stack: {
children: [
{
component: {
name: 'com.virocommunity.demo.main',
options: {
topBar: {
title: {
text: 'AR Demos'
}
}
}
}
}
]
}
}
});
});