-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
48 lines (46 loc) · 1013 Bytes
/
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
import { StatusBar } from 'expo-status-bar';
import {
StyleSheet,
Text,
TouchableWithoutFeedback,
SafeAreaView,
Image,
Alert,
Button,
} from 'react-native';
export default function App() {
return (
<SafeAreaView style={styles.container}>
<Text numberOfLines={1}>
Open up App.js to start working on yourasdasasdasasd
</Text>
<TouchableWithoutFeedback onPress={() => console.log('hello')}>
<Image source={require('./assets/icon.png')} style={styles.image} />
</TouchableWithoutFeedback>
<Button
title='Hello'
onPress={() =>
Alert.alert('Title', 'Message', [
{ text: 'Yes', onPress: () => console.log('yes') },
{ text: 'No', onPress: () => console.log('no') },
])
}
/>
<StatusBar style='auto' />
</SafeAreaView>
);
}
const styles = StyleSheet.create({
container: {
margin: 50,
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
image: {
width: 100,
height: 100,
marginTop: 30,
},
});