-
Notifications
You must be signed in to change notification settings - Fork 0
/
gui.kv
58 lines (54 loc) · 1.57 KB
/
gui.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
<MyLayout>:
BoxLayout:
spacing: 10
padding: 10,10,10,0
orientation: "horizontal"
BoxLayout:
orientation: "vertical"
size_hint: 0.3,1
canvas:
Rectangle:
pos: self.pos
size: self.size
AsyncImage
source: 'https://upload.wikimedia.org/wikipedia/tr/e/e7/K%C4%B1rklareli_%C3%9Cniversitesi_logosu.jpg'
Label:
size_hint: 1,0.3
text: root.your_time
color: [0,0,0,1]
Label:
size_hint: 1,0.3
text: "Kırklareli Üniversitesi"
color: [0,0,0,1]
Button:
text: ""
BoxLayout:
padding: 10,10,10,0
spacing: 10
size_hint: 1,0.3
orientation: "horizontal"
Button:
text: "Batarya Durumu"
on_press:
root.manager.transition.direction = 'up'
root.manager.current = 'batarya'
Button:
text: "Silecek"
Button:
text: "Far"
Button:
text: "Harita"
Button:
text: "Hata Kontrol"
BoxLayout:
padding: 10,10,10,10
size_hint: 1,0.3
Button:
text: "Motor ve Kontak"
<BataryaScreen>
BoxLayout:
Button:
text: "Geri Don"
on_press:
root.manager.transition.direction = 'down'
root.manager.current = 'MyLayout'