-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
118 lines (111 loc) · 3.74 KB
/
App.js
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
import React,{createContext} from "react";
import{Text,View,StyleSheet} from "react-native";
import webView from "./Components/WebView";
import { NavigationContainer } from '@react-navigation/native';
import { createNativeStackNavigator } from '@react-navigation/native-stack';
import Store from "./Components/Store";
// import HomeLogin from"./Components/HomeLogin";
// import LoginPage from "./Components/LoginPage";
// import Basics from "./Components/Basics";
// //import Practice from"./Components/Practice";
// import CounterApp from"./Components/CounterApp";
// import Flexbox from"./Components/Flexbox";
// import Images from"./Components/Images";
// import Images from "./Components/Images";
import Textinput from"./Components/Textinput";
// import Registration from"./Components/Registration";
// import Nitin from "./Components/Nitin";
// import Try from "./Components/Try";
// import TodoList from "./Components/TodoList";
// import Input from"./Components/Input";
// // import Filter from "./Components/Filter";
// import ListandScrollView from"./Components/ListandScrollView";
// import Search from"./Components/Search";
// import Login from "./Components/Login";
// import HomeLogin from "./Components/HomeLogin";
// import Flatlist from"./Components/Flatlist";
// import Registration from"./Components/Registration";
import Webview from "./Components/WebView";
import WebView2 from"./Components/WebView2";
import ApiCall from "./Components/ApiCall";
import ReduxCounterApp from"./Components/ReduxCounterApp";
import { Provider } from "react-redux";
import BackgroundImage from "./Components/BackgroundImage";
import Linking from"./Components/Linking";
import AppPermission from "./Components/AppPermissions";
import PlatformSpecific from "./Components/PlatformSpecific";
// import AsyncStorage from "@react-native-async-storage/async-storage";
import AsyncStorage from "./Components/AsyncStorage";
import AsyncStorage2 from "./Components/AsyncStorage2";
// import AsyncStorage3 from "./Components/AsyncStorage3"
const Apps = () => {
const Stack = createNativeStackNavigator();
return(
// <Basics/>
// <Login/>
// <LoginPage/>
// <HomeLogin/>
// <Practice/>
// <CounterApp/>
// <Flexbox/>
// <Images/>
/* <ToDoApp/> */
// <Textinput/>
// <ListandScrollView/>
// <Flatlist/>
// <Nitin/>
// <Try/>
// <TodoList/>
// <Input/>
// <Filter/>
// <Search/>
// <Webview/>
// <WebView2/>
// <ApiCall/>
// <BackgroundImage/>
// <Linking/>
// <AppPermission/>
// <PlatformSpecific/>
<AsyncStorage/>
/* <ReduxCounterApp/> */
// <AsyncStorage2/>
/* <AsyncStorage3/> */
// <NavigationContainer>
// <Stack.Navigator initialRouteName="Login">
// <Stack.Screen name="Login" component={Login}
// options={{ title: 'Login ',
// headerStyle:{
// backgroundColor:"white",
// },
// headerTintColor: 'black',
// headerTitleStyle: {
// fontWeight: 'bold',
// },
// }}/>
// <Stack.Screen name ="HomeLogin" component={HomeLogin}
// options={{ title: 'My Home' ,
// headerStyle:{
// backgroundColor:"#DFF6FF",
// textAlign:"center",
// }}}/>
// <Stack.Screen name ="webView" component={webView}/>
// <Stack.Screen name ="flatList" component={Flatlist}
// options={{ title: 'FlatList'
// }}/>
// <Stack.Screen name ="ListandScrollView" component={ListandScrollView}
// options={{ title: 'ScrollView' }}
// />
// {/* <Stack.Screen name =" Search" component={Search}
// options={{ title: 'Search Bar' }}/> */}
// <Stack.Screen name ="Registration" component={Registration}
// options={{ title: 'Registration Page' }}/>
// </Stack.Navigator>
// // </NavigationContainer>
// <Provider store={Store}>
// <ReduxCounterApp/>
// </Provider>
)
}
const Styles=StyleSheet.create({
});
export default Apps;