-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
56 lines (52 loc) · 1.76 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
55
56
import 'expo-dev-client'
import 'fastestsmallesttextencoderdecoder'
import '@polkadot/wasm-crypto/cjs/initOnlyAsm'
import 'react-native-url-polyfill/auto'
import { cryptoWaitReady } from '@polkadot/util-crypto'
import { SafeAreaProvider } from 'react-native-safe-area-context'
import { PersistGate } from 'redux-persist/integration/react'
import { Provider } from 'react-redux'
import { Host } from 'react-native-portalize'
import { GestureHandlerRootView } from 'react-native-gesture-handler'
import './locale'
import useCachedResources from 'hooks/useCachedResources'
import Navigation from './navigation'
import { store, persistor } from 'store/index'
import ToastMessage from 'components/common/ToastMessage'
import { LogBox } from 'react-native'
import { IconoirProvider } from 'iconoir-react-native'
import Colors from 'theme/Colors'
import { polyfillWebCrypto } from 'expo-standard-web-crypto'
polyfillWebCrypto()
cryptoWaitReady().catch(console.error)
LogBox.ignoreAllLogs()
export default function App() {
const isLoadingComplete = useCachedResources()
if (!isLoadingComplete) {
return null
} else {
return (
<GestureHandlerRootView style={{ flex: 1 }}>
<Provider store={store}>
<PersistGate loading={null} persistor={persistor}>
<IconoirProvider
iconProps={{
color: Colors.gray9,
strokeWidth: 1,
width: '1em',
height: '1em',
}}
>
<SafeAreaProvider>
<Host>
<Navigation />
<ToastMessage />
</Host>
</SafeAreaProvider>
</IconoirProvider>
</PersistGate>
</Provider>
</GestureHandlerRootView>
)
}
}