-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.jsx
43 lines (38 loc) · 1.31 KB
/
App.jsx
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
import { useEffect, useState } from "react";
import Navigation from "./navigation/navigation"
import OnBoardingScreen from "./Screens/OnBoarding";
import { NavigationContainer } from "@react-navigation/native";
import { createNativeStackNavigator } from "@react-navigation/native-stack";
import AsyncStorage from '@react-native-async-storage/async-storage';
function App() {
// const [isAppFirstLaunched, setIsAppFirstLaunched] = useState(true)
// const Stack = createNativeStackNavigator()
// useEffect(
// async function fetchData() {
// const appData = await AsyncStorage.getItem('isAppFirstLaunched');
// if (appData == null) {
// setIsAppFirstLaunched(true);
// AsyncStorage.setItem('isAppFirstLaunched', 'false');
// } else {
// setIsAppFirstLaunched(false);
// }
// fetchData();
// // AsyncStorage.removeItem('isAppFirstLaunched');
// }, []);
return (
<>
{/* {isAppFirstLaunched != null && (
isAppFirstLaunched ? (
<NavigationContainer>
<Stack.Navigator screenOptions={{ headerShown: false }}>
<Stack.Screen name="OnboardingScreen" component={OnBoardingScreen} />
</Stack.Navigator>
</NavigationContainer>
) : ( */}
<Navigation />
{/* )
)} */}
</>
);
}
export default App