-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
71 lines (62 loc) · 1.75 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
export default class App extends React.Component {
render() {
return (
<View style={styles.container}>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
*/
import React, { Component } from 'react';
import { Provider } from 'react-redux';
import { Font, AppLoading } from 'expo';
import store from './app/redux/store'; //Import the store
import Main from './app/config/routes'; //Import the app/index.js file
function cacheFonts(fonts) {
return fonts.map(font => Font.loadAsync(font));
}
export default class App extends Component {
constructor() {
super();
this.state = {
isReady: false,
}
}
async _loadAssetsAsync() {
const fontAssets = cacheFonts([
{RobotoExtraBold: require('./app/assets/fonts/Roboto-Black.ttf')},
{RobotoBold: require('./app/assets/fonts/Roboto-Bold.ttf')},
{RobotoMedium: require('./app/assets/fonts/Roboto-Medium.ttf')},
{RobotoRegular: require('./app/assets/fonts/Roboto-Regular.ttf')},
{RobotoLight: require('./app/assets/fonts/Roboto-Light.ttf')}
]);
await Promise.all([...fontAssets]);
}
render() {
if (!this.state.isReady) {
return (
<AppLoading
startAsync={this._loadAssetsAsync}
onFinish={() => this.setState({isReady: true})}
onError={console.warn}
/>
);
}
return (
<Provider store={store}>
<Main />
</Provider>
);
}
}