-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
98 lines (94 loc) · 2.21 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
import React, {Component} from 'react';
import {Text, View, TouchableOpacity, StyleSheet} from 'react-native';
export default class App extends React.Component {
constructor() {
super();
this.state = {
randomBackground: null,
randomButt: '#9B5CB8',
randomButtBorder: '#9B5CBF',
};
}
randomBackgroundColorGenerator = () => {
return (
'rgb(' +
Math.floor(Math.random() * 256) +
',' +
Math.floor(Math.random() * 256) +
',' +
Math.floor(Math.random() * 256) +
')'
);
};
randomButtColorGenerator = () => {
return (
'rgb(' +
Math.floor(Math.random() * 256) +
',' +
Math.floor(Math.random() * 256) +
',' +
Math.floor(Math.random() * 256) +
')'
);
};
randomButtBorderGenerator = () => {
return (
'rgb(' +
Math.floor(Math.random() * 256) +
',' +
Math.floor(Math.random() * 256) +
',' +
Math.floor(Math.random() * 256) +
')'
);
};
colorSet = () => {
this.setState({randomBackground: this.randomBackgroundColorGenerator()});
this.setState({randomButt: this.randomButtColorGenerator()});
this.setState({randomButtBorder: this.randomButtBorderGenerator()});
};
render() {
return (
<View
style={[
Styles.container,
{backgroundColor: this.state.randomBackground},
]}>
<Text style={Styles.simpleText}>{this.state.randomBackground}+)</Text>
<TouchableOpacity onPress={this.colorSet}>
<Text
style={[
Styles.buttStyle,
{
backgroundColor: this.state.randomButt,
borderColor: this.state.randomButtBorder,
},
]}>
Click Here
</Text>
</TouchableOpacity>
</View>
);
}
}
const Styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
},
simpleText: {
fontSize: 40,
fontWeight: 'bold',
marginBottom: 20,
color: 'white',
},
buttStyle: {
color: '#FFF',
backgroundColor: '#9B5CB8',
padding: 10,
borderRadius: 5,
borderWidth: 2,
borderColor: '#9B5CBF',
},
});