-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfakes.kv
More file actions
69 lines (61 loc) · 2.46 KB
/
fakes.kv
File metadata and controls
69 lines (61 loc) · 2.46 KB
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
69
ScreenManager:
MDScreen:
name: "welcome"
id: welcome
Image:
source: 'afitlogo.png'
allow_stretch: False
keep_ratio: False
MDBoxLayout:
orientation: 'vertical'
size: root.width, root.height
MDBoxLayout:
adaptive_height: True
MDLabel:
text: "AFIT TOURS"
#f"[color=#000000BB][/color]"
color: app.theme_cls.primary_color
halign: 'center'
valign: 'center'
#pos_hint: {"center_y": .5, "center_x": .5}
markup: True
font_style: 'H3'
RelativeLayout:
size_hint_y: .4
MDTextButton:
text: "GET STARTED"
color: app.theme_cls.primary_color
pos_hint: {"center_y": .2, "center_x": .5}
on_release: app.root.current = 'login'
MDScreen:
name: 'login'
id: login
Image:
source: 'afitlogo.png'
allow_stretch: False
keep_ratio: False
MDBoxLayout:
orientation: 'vertical'
size: root.width, root.height
RelativeLayout:
size_hint_y: .8
MDGridLayout:
rows: 3
padding: '5pd'
spacing: '5dp'
MDFillRoundFlatButton:
text: 'HELLO'
size_hint: None, None
size: ((self.width/2) - 10), ((self.height/2) - 10)
MDFillRoundFlatButton:
text: 'HELLO'
size_hint: None, None
size: ((self.width/2) - 10), ((self.height/2) - 10)
MDFillRoundFlatButton:
text: 'HELLO'
size_hint: None, None
size: ((self.width/2) - 10), ((self.height/2) - 10)
MDFillRoundFlatButton:
text: 'HELLO'
size_hint: None, None
size: ((self.width/2) - 10), ((self.height/2) - 10)