import 'react-native-url-polyfill/auto' import React, {useState, useEffect} from 'react' import {Linking} from 'react-native' import {RootSiblingParent} from 'react-native-root-siblings' import {GestureHandlerRootView} from 'react-native-gesture-handler' import SplashScreen from 'react-native-splash-screen' import {SafeAreaProvider} from 'react-native-safe-area-context' import {ThemeProvider} from './view/lib/ThemeContext' import * as view from './view/index' import {RootStoreModel, setupState, RootStoreProvider} from './state' import {MobileShell} from './view/shell/mobile' function App() { const [rootStore, setRootStore] = useState( undefined, ) // init useEffect(() => { view.setup() setupState().then(store => { setRootStore(store) SplashScreen.hide() Linking.getInitialURL().then((url: string | null) => { if (url) { store.nav.handleLink(url) } }) Linking.addEventListener('url', ({url}) => { store.nav.handleLink(url) }) }) }, []) // show nothing prior to init if (!rootStore) { return null } return ( ) } export default App