-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
38 lines (35 loc) · 1.22 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
// import { StatusBar } from 'expo-status-bar';
import { StyleSheet, Text, View, SafeAreaView} from 'react-native';
// import Home from './screens/home';
// import Lessons from './screens/English Lessons';
// import Subjects from './screens/Subjects';
// import FourOptions from './screens/InsideEachSubject';
// // import Subjects from './screens/games';
// import Games from './screens/games';
// import Quiz from './screens/Quiz';
// // import SignInScreen from './screens/Sign In';
// import Check from './screens/check';
// import Check2 from './screens/check2';
// the is the main stack with all navigations
import SignedInStack from './navigation';
// import SignInScreen from './screens/Sign Up';
// import VerificationScreen from './screens/OTP';
// import Password from './screens/ConfirmPassword';
// import ImagePickerScreen from './screens/Upload Image';
// import ResInfo from './screens/RestaurantInfo';
export default function App() {
return (
<View style={styles.container}>
<SignedInStack/>
{/* <StatusBar style="auto" /> */}
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
// backgroundColor: 'black',
// alignItems: 'center',
// justifyContent: 'center',
},
});