-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
37 lines (35 loc) · 927 Bytes
/
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
import React from 'react';
import { Font } from 'expo';
import { Text, View } from 'react-native';
import Navigation from './src/Navigation';
export default class App extends React.Component {
constructor(props) {
super(props);
this.state = {
isLoaded: false,
};
}
componentDidMount() {
let promise = Font.loadAsync({
'georgia': require('./assets/fonts/Georgia.ttf'),
'proxima-nova-regular': require('./assets/fonts/Proxima-Nova-Regular.ttf'),
'proxima-nova-semibold': require('./assets/fonts/Proxima-Nova-Semibold.ttf'),
});
promise.then((success) => {
this.setState({isLoaded: true});
});
}
render() {
if (this.state.isLoaded) {
return (
<Navigation />
);
} else {
return (
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
<Text>Loading...</Text>
</View>
)
}
}
}