Commit 4c3504cb by G

removed a little bit of unused code and some logger

parent 64de0808
import { UserAuthenticationContextProvider } from "@/contexts/UserAuthenticationContext";
import UnloggedUserStackNavigation from "@/navigations/UnloggedUserStackNavigation";
import AppMainStackNavigator from "@/navigations/AppMainStackNavigator";
import theme from "@/themes/Theme";
import ProvideQueryClient from "@components/providers_wrappers/ProvideQueryClient";
import { LOG } from "@logger";
import { NavigationContainer } from "@react-navigation/native";
import { ThemeProvider } from "@shopify/restyle";
import { StyleSheet } from "react-native";
import { SafeAreaProvider } from "react-native-safe-area-context";
const log = LOG.extend("App");
export default function App() {
log.error("App started...");
log.warn("App started...");
log.info("App started...");
log.http("App started...");
log.debug("App started...");
log.verbose("App started...");
log.silly("App started...");
return (
<ThemeProvider theme={theme}>
<NavigationContainer>
<ProvideQueryClient>
<UserAuthenticationContextProvider>
{/* <View style={styles.container}> */}
{/* <SafeAreaProvider>
<SafeAreaProvider>
<NavigationContainer>
<ProvideQueryClient>
<UserAuthenticationContextProvider>
{/* <View style={styles.container}> */}
{/* <SafeAreaProvider>
<StatusBar style="auto" />
<UserLoginScreen />
</SafeAreaProvider> */}
<UnloggedUserStackNavigation />
{/* </View> */}
</UserAuthenticationContextProvider>
</ProvideQueryClient>
</NavigationContainer>
<AppMainStackNavigator />
{/* </View> */}
</UserAuthenticationContextProvider>
</ProvideQueryClient>
</NavigationContainer>
</SafeAreaProvider>
</ThemeProvider>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
alignItems: "center",
justifyContent: "center",
},
});
const NavigatonRenderer = () => {};
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