-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
54 lines (44 loc) · 1.42 KB
/
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
46
47
48
49
50
51
52
53
54
/* eslint-disable global-require */
import { useCallback } from 'react';
import { useFonts } from 'expo-font';
import * as SplashScreen from 'expo-splash-screen';
import { SafeAreaProvider } from 'react-native-safe-area-context';
import { IntlProvider } from 'react-intl';
import { useDeviceContext } from 'twrnc';
import { getLocales } from 'expo-localization';
import RU_MESSAGES from '@locales/ru.json';
import EN_MESSAGES from '@locales/en.json';
import tw from './ui/tailwind';
import Navigation from './navigation';
SplashScreen.preventAutoHideAsync();
export default function App() {
const [{ languageCode }] = getLocales();
const [fontsLoaded] = useFonts({
Inter: require('@assets/fonts/Inter-Regular.otf'),
'Inter-Bold': require('@assets/fonts/Inter-Bold.otf'),
'Inter-SemiBold': require('@assets/fonts/Inter-SemiBold.otf'),
});
useDeviceContext(tw, {
observeDeviceColorSchemeChanges: false,
initialColorScheme: 'light',
});
const onLayoutRootView = useCallback(async () => {
if (fontsLoaded) {
await SplashScreen.hideAsync();
}
}, [fontsLoaded]);
if (!fontsLoaded) {
return null;
}
return (
<IntlProvider
messages={languageCode === 'ru' ? RU_MESSAGES : EN_MESSAGES}
locale={languageCode || 'en'}
defaultLocale="en"
>
<SafeAreaProvider onLayout={onLayoutRootView}>
<Navigation />
</SafeAreaProvider>
</IntlProvider>
);
}