You need to sign in or sign up before continuing.
Commit 3b18efc2 by G

navigation container on top of everything beside ThemeProvider

parent cc69d777
...@@ -9,9 +9,9 @@ import { StyleSheet } from "react-native"; ...@@ -9,9 +9,9 @@ import { StyleSheet } from "react-native";
export default function App() { export default function App() {
return ( return (
<ThemeProvider theme={theme}> <ThemeProvider theme={theme}>
<ProvideQueryClient> <NavigationContainer>
<UserAuthenticationContextProvider> <ProvideQueryClient>
<NavigationContainer> <UserAuthenticationContextProvider>
{/* <View style={styles.container}> */} {/* <View style={styles.container}> */}
{/* <SafeAreaProvider> {/* <SafeAreaProvider>
<StatusBar style="auto" /> <StatusBar style="auto" />
...@@ -19,9 +19,9 @@ export default function App() { ...@@ -19,9 +19,9 @@ export default function App() {
</SafeAreaProvider> */} </SafeAreaProvider> */}
<UnloggedUserStackNavigation /> <UnloggedUserStackNavigation />
{/* </View> */} {/* </View> */}
</NavigationContainer> </UserAuthenticationContextProvider>
</UserAuthenticationContextProvider> </ProvideQueryClient>
</ProvideQueryClient> </NavigationContainer>
</ThemeProvider> </ThemeProvider>
); );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment