From 2e8bbc7fc8ac8bc87f18539463da1f667fff11e4 Mon Sep 17 00:00:00 2001 From: G Date: Sat, 27 Apr 2024 23:27:09 +0000 Subject: [PATCH] wrapped by the context and using the all new navigation system. --- App.tsx | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/App.tsx b/App.tsx index 41bdd78..90395cb 100644 --- a/App.tsx +++ b/App.tsx @@ -1,4 +1,5 @@ -import { MyTabs } from "@/navigations/BottomTabs"; +import { UserAuthenticationContextProvider } from "@/contexts/UserAuthenticationContext"; +import UnloggedUserStackNavigation from "@/navigations/UnloggedUserStackNavigation"; import theme from "@/themes/Theme"; import { NavigationContainer } from "@react-navigation/native"; import { ThemeProvider } from "@shopify/restyle"; @@ -7,15 +8,17 @@ import { StyleSheet } from "react-native"; export default function App() { return ( - - {/* */} - {/* + + + {/* */} + {/* */} - - {/* */} - + + {/* */} + + ); } @@ -28,3 +31,5 @@ const styles = StyleSheet.create({ justifyContent: "center", }, }); + +const NavigatonRenderer = () => {}; -- libgit2 0.27.1