-
Notifications
You must be signed in to change notification settings - Fork 0
/
quali_wheel_screen.kv
51 lines (43 loc) · 1.2 KB
/
quali_wheel_screen.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
<QualiWheelScreen>
BoxLayout:
orientation: "vertical"
size: root.width, root.height
padding: 32
spacing: 16
Button:
id: exit_button
text: "<- BACK"
font_size: 12
size_hint: .25, .5
on_release: root.exit_back()
Spinner:
id: year_select
text: "Select year"
values: []
font_size: 32
on_text: root.year_clicked(year_select.text)
Label:
id: quali_label
text: "Qualification"
font_size: 32
Spinner:
id: quali_select
text: "Select circuit"
values: []
font_size: 32
on_text: root.circuit_clicked(quali_select.text)
Label:
id: driver_label
text: "Driver"
font_size: 32
Spinner:
id: driver_select
text: "Select driver"
values: []
font_size: 32
on_text: root.driver_clicked(driver_select.text)
Button:
id: button_start
text: "START"
font_size: 36
on_release: root.start_clicked()