-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
88 lines (86 loc) · 1.97 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
import React, { useState } from 'react';
import {
View,
Text,
StyleSheet,
TouchableOpacity,
ToastAndroid,
Platform,
} from 'react-native';
export default function App() {
const [text, setText] = useState('World');
const [textColor, setTextColor] = useState('black');
const [backgroundColor, setBackgroundColor] = useState('skyblue');
const textList = [
'Sunshine',
'Beautiful',
'Awesome',
'Real',
'Really super',
'Super',
'Smart',
'Dear',
'Hero',
'Rock',
];
return (
<View
style={[styles.container, { backgroundColor: backgroundColor }]}
>
<View style={styles.row}>
<TouchableOpacity
style={styles.button}
onPress={() => {
setText(textList[Math.floor(Math.random() * 10)]);
setTextColor(`#${Math.floor(Math.random() * 1000)}FF`);
setBackgroundColor(
`#FF${Math.floor(Math.random() * 1000)}`,
);
if (Platform.OS === 'android') {
ToastAndroid.show(
`${Math.floor(
Math.random() * 10,
)} is your lucky number!`,
ToastAndroid.SHORT,
);
}
}}
>
<Text style={[styles.title, { color: textColor }]}>
Hello, {text}!
</Text>
</TouchableOpacity>
</View>
{Platform.OS !== 'android' ? (
<Text style={styles.title}>
Your lucky number is {Math.floor(Math.random() * 10)}
</Text>
) : (
<View></View>
)}
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
padding: 18,
},
row: {
justifyContent: 'center',
flexDirection: 'row',
flex: 1,
},
title: {
justifyContent: 'center',
fontSize: 50,
fontWeight: 'bold',
textAlign: 'center',
},
button: {
width: 500,
borderRadius: 20,
justifyContent: 'center',
backgroundColor: 'red',
},
});