forked from rechner/py-aamva
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.kv
68 lines (52 loc) · 1.5 KB
/
main.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
63
64
65
66
67
68
<RootWidget>:
vlayout: vlayout
BoxLayout:
status: status
top_layout: top_layout
low_layout: low_layout
id: vlayout
orientation: 'vertical'
BoxLayout:
status: status
left_icon: left_icon
left_status: left_status
right_status: right_status
id: top_layout
BoxLayoutB:
id: left_status
bcolor: 1, 1, 1, 1
Image:
id: left_icon
source: 'img/martini.png'
Label:
id: status
text: 'Age: [b]?[/b]'
font_size: 40
markup: True
#size_hint_y: None
#text_size: self.width, None
#height: self.texture_size[1]
#text_size: self.size
BoxLayoutB:
id: right_status
bcolor: 1, 1, 1, 1
Image:
id: right_icon
source: 'img/smoking.png'
BoxLayout:
status: status_low
id: low_layout
orientation: 'horizontal'
Label:
markup: True
id: status_low
text: 'Scan License now'
font_size: 40
<BoxLayoutB>:
bcolor: 1, 1, 1, 1
canvas.before:
Color:
rgba: self.bcolor
Rectangle:
pos: self.pos
size: self.size