-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
36 lines (31 loc) · 872 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
import { StatusBar } from "expo-status-bar";
import { NavigationContainer } from "@react-navigation/native";
import AppLoading from "expo-app-loading";
import {
useFonts,
Poppins_400Regular,
Poppins_700Bold,
} from "@expo-google-fonts/poppins";
import { View } from "react-native";
import { ThemeProvider } from "styled-components/native";
import { Routes } from "./src/Routes";
import theme from "./src/theme";
export default function App() {
const [fontsLoaded] = useFonts({
Poppins_400Regular,
Poppins_700Bold,
});
if (!fontsLoaded) {
return <AppLoading />;
}
return (
<NavigationContainer>
<StatusBar style="light" />
<ThemeProvider theme={theme}>
<View style={{ flex: 1, backgroundColor: theme.COLORS.BACKGROUND }}>
<Routes />
</View>
</ThemeProvider>
</NavigationContainer>
);
}