-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcasey.kv
62 lines (39 loc) · 1.07 KB
/
casey.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#:kivy 1.8.0
<MenuScreen>:
BoxLayout:
orientation: 'vertical'
BoxLayout:
Button:
text: 'Host'
on_press: root.manager.current = 'host'
Button:
text: 'Contestant'
on_press: root.manager.current = 'contestant'
BoxLayout:
Button:
text: 'Create Quiz Pack'
on_press: root.manager.current = 'create'
<HostScreen>:
BoxLayout:
Label:
text: 'Host Screen'
font_size: '50dp'
Button:
text: 'Menu'
on_press: root.manager.current = 'menu'
<ContestantScreen>:
BoxLayout:
Label:
text: 'Contestant Screen'
font_size: '35dp'
Button:
text: 'Menu'
on_press: root.manager.current = 'menu'
<CreateScreen>:
BoxLayout:
Label:
text: 'Quiz Creation Screen'
font_size: '35dp'
Button:
text: 'Menu'
on_press: root.manager.current = 'menu'