-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
42 lines (34 loc) · 959 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
38
39
40
41
42
import React from "react";
import { NavigationContainer } from "@react-navigation/native";
import { createStackNavigator } from "@react-navigation/stack";
import { Text } from "react-native";
import AuthStack from "./app/navigation/AuthStack";
import AppStack from "./app/navigation/AppStack";
import AppLoading from "expo-app-loading";
import {
useFonts,
InknutAntiqua_700Bold,
} from "@expo-google-fonts/inknut-antiqua";
import {
OpenSans_700Bold,
OpenSans_400Regular_Italic,
OpenSans_400Regular,
} from "@expo-google-fonts/open-sans";
import ProfileScreen from "./app/screens/ProfileScreen";
export default function App() {
let [fontsLoaded] = useFonts({
InknutAntiqua_700Bold,
OpenSans_700Bold,
OpenSans_400Regular_Italic,
OpenSans_400Regular,
});
if (!fontsLoaded) {
return <AppLoading />;
}
return (
<NavigationContainer>
<AuthStack />
</NavigationContainer>
// <ProfileScreen />
);
}