forked from lassehav-oamk/din22-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
35 lines (31 loc) · 927 Bytes
/
App.tsx
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
import { StyleSheet, Text, View, Image} from 'react-native';
import Lesson2 from './lessons/lesson2/Lesson2';
import Lesson3 from './lessons/lesson3/Lesson3';
import Images from './lessons/lesson3/Images';
import React from 'react';
import L4ButtonDemo from './lessons/lesson4/L4ButtonDemo';
import L4TextInputDemo from './lessons/lesson4/L4TextInputDemo';
import L5FlatList from './lessons/lesson5/L5FlatList';
export default function App() {
return (
<View style={styles.container}>
{ /* <Images /> */ }
{ /* <Lesson2 /> */ }
{ /* <Lesson3 /> */ }
{ /* <L4ButtonDemo /> */ }
{/* <L4TextInputDemo /> */ }
<L5FlatList />
</View>
);
}
const styles = StyleSheet.create({
container: {
flexDirection: 'column',
backgroundColor: '#D00',
alignItems: 'center',
justifyContent: 'flex-start',
width: '100%',
height: '100%',
paddingTop: 40,
},
});