-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanding_view.kv
59 lines (56 loc) · 2.22 KB
/
landing_view.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
#:kivy 2.0.0
Screen:
MDNavigationLayout:
ScreenManager:
Screen:
BoxLayout:
orientation: 'vertical'
MDToolbar:
title: "Navigation Drawer"
elevation: 10
left_action_items: [['menu', lambda x: nav_drawer.set_state('toggle')]]
Widget:
MDNavigationDrawer:
id: nav_drawer
BoxLayout:
orientation:'vertical'
spacing: '8dp'
padding: '8dp'
Image:
source: 'avator.png'
MDLabel:
text: 'Levi'
font_style: 'Subtitle1'
size_hint_y: None
height: self.texture_size[1]
MDLabel:
text: 'Levi@gmail.com'
font_style: 'Subtitle1'
size_hint_y: None
height: self.texture_size[1]
ScrollView:
MDList:
OneLineIconListItem:
text: 'Profile'
IconLeftWidget:
icon: 'face-profile'
OneLineIconListItem:
text: 'Stock'
IconLeftWidget:
icon: 'point-of-sale'
OneLineIconListItem:
text: 'Sales'
IconLeftWidget:
icon: 'cash'
OneLineIconListItem:
text: 'Technicians'
IconLeftWidget:
icon: 'car-multiple'
OneLineIconListItem:
text: 'Leave'
IconLeftWidget:
icon: 'swim'
OneLineIconListItem:
text: 'Logout'
IconLeftWidget:
icon: 'Logout'