-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
88 lines (82 loc) · 3.07 KB
/
App.js
File metadata and controls
88 lines (82 loc) · 3.07 KB
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
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
*/
// very imortent things plz
import React, {useState} from 'react';
import {StyleSheet} from 'react-native';
import User from './components/flatlist';
import Basic from './components/basic';
import Custom from './components/custom';
import MakeGrid from './components/MakeGrid';
import Componentswithfaltlist from './components/Componentswithfaltlist';
import Section_List from './components/SectionList';
import Classcomponents from './components/Classcomponents';
import Use_effect from './components/Use_effect';
import Show_Hide_Components from './components/Show_Hide_Components';
import Unmount from './components/useEffect_unmount_life_cycle';
import Responsive_Layout from './components/Responsive_Layout';
import Style_button_inReactNative from './components/Style_button_inReactNative';
import Radio_Button from './components/Radio_Button';
import Radio_Button_Dynamic from './components/Radio_Button_Dynamic';
import Loader from './components/Loader';
import Modal_open from './components/Modal';
import Status_Bar from './components/Status_Bar';
import Pressable_com from './components/Pressable_com';
import Plate_form from './components/plateform';
import Web_view from './components/webview';
import Stack_Naviagation from './components/Stack_Naviagation';
import Tab_navigation from "./components/tab_navigation"
import Api_call from './components/Api_call';
import List_with_Api_call from './components/List_with_api_call';
import FlatList_with_Api_call from './components/FlatList_api_call';
import Json_server from './components/Json_server';
import Post_api_call from './components/Post_api_call';
import Post_api_call_with_inputfield from './components/Post_api_call_with_inputfield';
import List_api_with_data from './components/List_api_with_data';
import List_api_with_data_deleteMethod from './components/List_api_with_data';
import Search_with_api from './components/Search_with_api';
import Use_Ref from './components/use_Ref';
import Async_Storage from './components/Async_Storage';
function App() {
return (
<>
{/* <Basic />
<User/>
<Custom />
<MakeGrid />
<Componentswithfaltlist/>
<Section_List/>
<Classcomponents/>
<Use_effect/>
<Show_Hide_Components/>
<Unmount/>
<Responsive_Layout/>
{/* <Style_button_inReactNative/>
<Radio_Button/>
<Radio_Button_Dynamic/>
<Loader/>
<Modal_open/>
<Status_Bar/>
<Pressable_com />
<Plate_form/>
<Web_view/>
<Stack_Naviagation/>
<Tab_navigation/>
<Api_call/>
<List_with_Api_call/>
<FlatList_with_Api_call/>
<Json_server/>
<Post_api_call/>
<Post_api_call_with_inputfield/>
<List_api_with_data_deleteMethod/>most imported components
<Search_with_api/> most importent
<Use_Ref/>
*/}
<Async_Storage/>
</>
);
}
export default App;