-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
36 lines (30 loc) · 1.09 KB
/
App.tsx
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
import React, { useState } from 'react';
import useCachedResources from '~hooks/useCachedResources';
import useColorScheme from '~hooks/useColorScheme';
import * as eva from '@eva-design/eva';
import { ApplicationProvider, Layout, Text } from '@ui-kitten/components';
import { useFonts } from 'expo-font';
import { StatusBar } from 'expo-status-bar';
import { SafeAreaProvider } from 'react-native-safe-area-context';
import { default as mapping } from './mapping.json';
import Navigation from './navigation';
import { theme } from './theme';
export default function App() {
const isLoadingComplete = useCachedResources();
const colorScheme = useColorScheme();
const [fontsLoaded] = useFonts({
'OpenSans-Regular': require('./assets/fonts/OpenSans-Regular.ttf'),
});
if (!fontsLoaded && !isLoadingComplete) {
return null;
} else {
return (
<ApplicationProvider {...eva} theme={theme} customMapping={mapping}>
<SafeAreaProvider>
<Navigation colorScheme={colorScheme} />
<StatusBar />
</SafeAreaProvider>
</ApplicationProvider>
);
}
}