This repository has been archived by the owner on Oct 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.js
52 lines (51 loc) · 1.77 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
import { StatusBar } from 'expo-status-bar';
import React from 'react';
import { StyleSheet, Text, View} from 'react-native';
import HomeDrawerNavigator from './Navigators/HomeDrawerNavigator';
import SVGIcon from './Components/SVGIcon';
import Dropdown from './Components/Dropdown';
import Form from './Components/Form';
import Cards from './Components/Cards';
import ListItems from './Components/ListItems';
import Banners from './Components/Banners';
import TopBottomAnim from './Components/TopBottomAnim';
import AccountForm from './Components/AccountForm';
import Webview from './Components/WebView';
import PaymentInfo from './Components/PaymentInfo';
import CountryStatePicker from './Components/CountryStatePicker';
import CountryNavigator from './Navigators/CountryNavigator';
import SwipeableList from './Features/SwipeableList';
import LineGraph from './Features/LineGraph';
import OnboardingScreens from './Features/OnboardingScreens';
import SearchBar from './Components/SearchBar';
import BottomTabNavigator from './Navigators/BottomTabNavigator';
import CurrentLocation from './Features/CurrentLocation';
import SystemSettings from './Features/SystemSettings';
import HashingPassword from './Features/HashingPassword';
import AnimatedLoader from './Components/AnimatedLoader';
export default function App() {
return (
// <SwipeableList/>
// <LineGraph/>
// <SearchBar/>
// <CountryNavigator/>
// <Webview/>
// <PaymentInfo/>
// <Cards/>
// <ListItems/>
// <Banners/>
// <TopBottomAnim/>
// <CurrentLocation/>
// <SystemSettings/>
// <HashingPassword/>
<AnimatedLoader/>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});