-
Notifications
You must be signed in to change notification settings - Fork 0
/
welcome.kv
29 lines (27 loc) · 1.14 KB
/
welcome.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
<Welcome>:
name: 'welcome'
GridLayout:
cols: 1
Image:
size_hint: (1, 1)
source: 'medifyLogo.png'
GridLayout:
cols: 2
FloatLayout:
Button:
color: rgba(Colors.LIGHT_BLUE)
background_color: rgba(Colors.ACCENT_BLUE)
text: 'Patient Login'
pos_hint: {'center_x': 0.5, "top": 0.6}
size_hint: (.6, .4)
font_size: min(self.width, self.height) * 0.15 # Set font size based on minimum of width and height
on_press: root.manager.current = 'patient login'
FloatLayout:
Button:
color: rgba(Colors.LIGHT_BLUE)
background_color: rgba(Colors.ACCENT_BLUE)
text: 'EMS Login'
pos_hint: {'center_x': 0.5, "top": 0.6}
size_hint: (.6, .4)
font_size: min(self.width, self.height) * 0.2 # Set font size based on minimum of width and height
on_press: root.manager.current = 'ems login'