-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwikikircandroid.kv
More file actions
33 lines (29 loc) · 927 Bytes
/
wikikircandroid.kv
File metadata and controls
33 lines (29 loc) · 927 Bytes
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
#:kivy 1.10.0
<MainScreen>:
BoxLayout:
orientation: 'vertical'
BoxLayout:
size_hint_y: 0.9
orientation: 'vertical'
Label:
halign: 'left'
valign: 'top'
text: root.info
bold: True
font_size: dp(root.f_size)
color: (0, 1, 0, 1)
BoxLayout:
size_hint_y: 0.1
orientation: 'horizontal'
Button:
background_color: (0.8, 0.8, 0.8, 1)
text: 'Options'
color: (0, 1, 0, 1)
font_size: "22dp"
on_release: app.open_settings()
Button:
background_color: (0.8, 0.8, 0.8, 1)
text: 'Quitter'
color: (0, 1, 0, 1)
font_size: "22dp"
on_release: app.do_quit()