-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdesign.kv
40 lines (40 loc) · 894 Bytes
/
design.kv
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
<Sc>:
GridLayout:
cols:1
padding: 15,15
spacing: 20,20
Label:
text:"Binary Calculator"
TextInput:
id:calculation
GridLayout:
cols:4
Button:
text:"1"
on_press:root.one(root.ids.calculation.text)
Button:
text:"0"
on_press:root.zero(root.ids.calculation.text)
Button:
text:"C"
on_press:root.clear(root.ids.calculation.text)
Button:
text:"="
on_press:root.equal(root.ids.calculation.text)
GridLayout:
cols:4
Button:
text:"+"
on_press:root.plus(root.ids.calculation.text)
Button:
text:"-"
on_press:root.minus(root.ids.calculation.text)
Button:
text:"/"
on_press:root.divide(root.ids.calculation.text)
Button:
text:"X"
on_press:root.multiplication(root.ids.calculation.text)
<RootWidget>:
Sc:
name:"home"