-
Notifications
You must be signed in to change notification settings - Fork 2
/
App.js
37 lines (30 loc) · 1008 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
import Navigation from './src/navigations';
import React from 'react';
import { useCallback, useEffect } from 'react';
import { useFonts } from 'expo-font';
import * as Font from 'expo-font';
export default function App() {
// const [fontsLoaded] = Font.loadAsync({
// 'my-custom-font': require('./assets/fonts/GyeonggiBatangTTF_Regular.ttf'),
// // 'my-second-font' : require('../assets/fonts/SUIT-Regular.ttf'),
// });
// const onLayoutRootView = useCallback(async () => {}, [fontsLoaded]);
// useEffect(() => {
// const loadFonts = async () => {
// await Font.loadAsync({
// 'my-custom-font': require('./assets/fonts/GyeonggiBatangTTF_Regular.ttf'),
// });
// };
// loadFonts();
// }, []);
// useEffect(() => {
// //SoundManager.loadSound(require('./images/bgm.wav'));
// }, []);
// if (!fontsLoaded) {
// return null;
// }
return (
//<Navigation onLayout={onLayoutRootView}></Navigation>
<Navigation></Navigation>
);
}