-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstream.kv
More file actions
30 lines (25 loc) · 768 Bytes
/
Copy pathstream.kv
File metadata and controls
30 lines (25 loc) · 768 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
<Stream>:
BoxLayout:
orientation: 'vertical'
Label:
id: stream_label
text: "Select Stream"
font_size: 30
Spinner:
id: stream_dropdown
text: "Stream Course"
values: ["BSCIT", "BMS", "BBI", "BMM"]
on_text: root.stream_clicked(stream_dropdown.text)
Label:
id: year_label
text: "Select Year"
font_size: 30
Spinner:
id: year_dropdown
text: "Year"
values: ["FY", "SY", "TY"]
on_text: root.year_clicked(year_dropdown.text)
Button:
text: "Get Attendence"
font_size: 25
on_press: root.getAttendence()