-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
139 lines (133 loc) · 3.62 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow strict-local
*/
import React from 'react';
import {
SafeAreaView,
StyleSheet,
View,
Text,
Image,
TouchableWithoutFeedback,
TouchableOpacity,
TouchableHighlight,
TouchableNativeFeedback,
Button,
Alert,
Platform,
StatusBar,
Dimensions
} from 'react-native';
import {
useDimensions,
useDeviceOrientation
} from '@react-native-community/hooks';
import WelcomeScreen from './app/screens/WelcomeScreen';
import ViewImageScreen from './app/screens/ViewImageScreen';
const App = () => {
return <ViewImageScreen />;
};
// const App = () => {
// // console.log(useDimensions());
// // console.log(useDeviceOrientation());
// const {landscape} = useDeviceOrientation();
// return (
// // <SafeAreaView style={[styles.container]}>
// // {/* <Text>Hello React Native</Text> */}
// // {/* <Image source={require('./app/assets/snoopy.jpg')} /> */}
// // {/* <TouchableHighlight onPress={() => console.log('Image tapped')}>
// // <Image
// // source={{
// // uri: 'https://picsum.photos/200',
// // width: 200,
// // height: 200,
// // }}
// // />
// // </TouchableHighlight>
// // <TouchableNativeFeedback>
// // <View style={{width: 200, height: 70, backgroundColor: 'white'}} />
// // </TouchableNativeFeedback> */}
// // {/* <Button
// // title="Click Me"
// // onPress={() =>
// // Alert.alert('My title', 'My message', [
// // {
// // text: 'Yes',
// // onPress: () => console.log('Yes'),
// // },
// // {
// // text: 'No',
// // onPress: () => console.log('No'),
// // },
// // ])
// // }
// // /> */}
// // {/* <View
// // style={{
// // backgroundColor: '#fff',
// // width: '100%',
// // height: landscape ? '100%' : '30%',
// // }}
// // /> */}
// // </SafeAreaView>
// <View
// style={{
// backgroundColor: '#fff',
// flex: 1,
// flexDirection: 'row',
// justifyContent: 'center', // align items along the primary axis (main)
// alignItems: 'center', // align items along the cross axis (secondary)
// }}>
// <View
// style={{
// backgroundColor: 'dodgerblue',
// // flex: 2,
// width: 100,
// height: 100,
// }}
// />
// <View
// style={{
// backgroundColor: 'gold',
// // flex: 1,
// width: 100,
// height: 100,
// top: 20,
// left: 20,
// position: 'absolute',
// /*
// relative (default): positioning according to its current position without affecting the layout around it
// absolute: positioning relative to its parent and the layout around will get affected
// */
// }}
// />
// <View
// style={{
// backgroundColor: 'tomato',
// // flex: 1,
// width: 100,
// height: 100,
// }}
// />
// </View>
// );
// };
/*
Purposes of using Stylesheet.create
1. Validate the style properties
2. Optimize the styling
*/
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: 'dodgerblue',
paddingTop: Platform.OS === 'android' ? StatusBar.currentHeight : 0
// justifyContent: 'center',
// alignItems: 'center',
}
});
export default App;