-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
34 lines (32 loc) · 840 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
import React, { useState } from "react";
import { Provider } from "react-redux";
import store from "./Store";
import "react-native-gesture-handler";
import Index from "./routes/Index";
import * as Font from "expo-font";
import { AppLoading } from "expo";
export default function App() {
const [loaded, setloaded] = useState(false);
const fetchFonts = () =>
Font.loadAsync({
PokemonSolidNormal: require("./assets/fonts/PokemonSolidNormal.ttf"),
PokemonHollowNormal: require("./assets/fonts/PokemonHollowNormal.ttf"),
});
if (loaded) {
return (
<Provider store={store}>
<Index />
</Provider>
);
} else {
return (
<AppLoading
startAsync={fetchFonts}
onFinish={() => {
setloaded(true);
}}
onError={console.warn}
/>
);
}
}