-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
56 lines (48 loc) · 1.28 KB
/
App.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import React from 'react';
import { AppRegistry } from 'react-native';
import { Provider } from 'react-redux';
import { Root, Container, Header, Text } from 'native-base';
import { Font, AppLoading } from 'expo';
import FieldSet from './src/native/FieldSet';
import createStore from './src/common/createStore';
import loadJsonToStore from './src/common/loadJsonToStore';
const store = createStore();
class App extends React.Component {
constructor(props) {
super(props);
this.state = { loading: true };
}
async componentWillMount() {
await Font.loadAsync({
Roboto: require('native-base/Fonts/Roboto.ttf'), // eslint-disable-line
Roboto_medium: require('native-base/Fonts/Roboto_medium.ttf'), // eslint-disable-line
});
this.setState({ loading: false });
}
render() {
if (this.state.loading) {
return (
<Root>
<AppLoading />
</Root>
);
}
return (
<Root>
<Provider store={store}>
<Container>
<Header>
<Text>
Survey
</Text>
</Header>
<FieldSet />
</Container>
</Provider>
</Root>
);
}
}
export default App;
AppRegistry.registerComponent('App', () => App);
loadJsonToStore(store);