-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
116 lines (104 loc) · 3.25 KB
/
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
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
import React, {Component} from 'react';
import {SafeAreaView, StyleSheet, Text, View} from 'react-native';
import Button from './components/Button';
import Row from './components/Row';
import calculator, {initialState} from './util/calculator';
// create class component of App
export default class App extends Component {
state = initialState;
// handle tap method
HandleTap = (type, value) => {
this.setState(state => calculator(type, value, state));
};
// render method
render() {
return (
<View style={styles.container}>
{/* Status bae here */}
<SafeAreaView>
<Text style={styles.value}>
{parseFloat(this.state.currentValue).toLocaleString()}
</Text>
{/* Do create componentRow */}
<Row>
<Button
text="C"
theme="secondary"
onPress={() => this.HandleTap('clear')}
/>
<Button
text="+/-"
theme="secondary"
onPress={() => this.HandleTap('posneg')}
/>
<Button
text="%"
theme="secondary"
onPress={() => this.HandleTap('percentage')}
/>
<Button
text="/"
theme="accent"
onPress={() => this.HandleTap('operator', '/')}
/>
</Row>
{/* Number */}
<Row>
<Button text="7" onPress={() => this.HandleTap('number', 7)} />
<Button text="8" onPress={() => this.HandleTap('number', 8)} />
<Button text="9" onPress={() => this.HandleTap('number', 9)} />
<Button
text="X"
theme="accent"
onPress={() => this.HandleTap('operator', '*')}
/>
</Row>
<Row>
<Button text="5" onPress={() => this.HandleTap('number', 5)} />
<Button text="6" onPress={() => this.HandleTap('number', 6)} />
<Button text="7" onPress={() => this.HandleTap('number', 7)} />
<Button
text="-"
theme="accent"
onPress={() => this.HandleTap('operator', '-')}
/>
</Row>
<Row>
<Button text="1" onPress={() => this.HandleTap('number', 1)} />
<Button text="2" onPress={() => this.HandleTap('number', 2)} />
<Button text="3" onPress={() => this.HandleTap('number', 3)} />
<Button
text="+"
theme="accent"
onPress={() => this.HandleTap('operator', '+')}
/>
</Row>
<Row>
<Button text="0" onPress={() => this.HandleTap('number', 0)} />
<Button text="." onPress={() => this.HandleTap('number', '.')} />
<Button
text="="
theme="primary"
onPress={() => this.HandleTap('equal', '=')}
/>
</Row>
</SafeAreaView>
</View>
);
}
}
// create styles of app
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#202020',
justifyContent: 'flex-end',
},
value: {
color: '#fff',
fontSize: 42,
textAlign: 'right',
marginRight: 20,
marginBottom: 10,
},
});