-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
45 lines (28 loc) · 970 Bytes
/
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
37
38
39
40
41
42
43
44
45
import React from 'react';
import { ThemeProvider } from 'styled-components'
import AppRoutes from './src/routes/app.routes';
import { NewMeal } from './src/pages/DietScreens/NewMeal';
import { useFonts, Prompt_600SemiBold, Prompt_500Medium, Prompt_700Bold } from '@expo-google-fonts/prompt';
//--------------------------------------------------
import Theme from './src/global/styles/Theme';
import AppLoading from 'expo-app-loading';
import { NavigationContainer } from '@react-navigation/native';
import { AuthRoutes } from './src/routes/auth.routes';
//---------------------------------------------------
export default function App() {
const [FontsLoaded] = useFonts({
Prompt_600SemiBold,
Prompt_500Medium,
Prompt_700Bold
})
if (!FontsLoaded) {
return <AppLoading />
}
return (
<ThemeProvider theme={Theme} >
<NavigationContainer>
<AppRoutes/>
</NavigationContainer>
</ThemeProvider>
);
}