Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <DrawerClickableItem@MDNavigationDrawerItem>
- focus_color: "#5e1f38"
- text_color: "#f29097"
- icon_color: "#ef687e"
- ripple_color: "#ef687e"
- selected_color: "#ef687e"
- <DrawerLabelItem@MDNavigationDrawerItem>
- text_color: "#87cefa"
- icon_color: "#4a4939"
- focus_behavior: True
- selected_color: "#4a4939"
- _no_ripple_effect: True
- <UI>
- MDList:
- OneLineListItem:
- text: "Профиль"
- on_press:
- root.nav_drawer.set_state("close")
- root.screen_manager.current = "diary"
- OneLineListItem:
- text: "Дневник"
- on_press:
- root.nav_drawer.set_state("close")
- root.screen_manager.current = "diary"
- Screen:
- MDNavigationLayout:
- MDScreenManager:
- MDScreen:
- MDTopAppBar:
- title: "Электронный журнал"
- elevation: 4
- pos_hint: {"top": 1}
- md_bg_color: "#ef687e"
- specific_text_color: "#5e1f38"
- left_action_items: [["menu", lambda x: nav_drawer.set_state("open")]]
- MDNavigationLayout:
- id: navLayout
- MDScreenManager:
- id: screen_manager
- MDScreen:
- name: "profile"
- MDFloatLayout:
- MDBoxLayout:
- orientation: 'vertical'
- spacing: '5dp'
- MDLabel:
- text: 'app.full_name'
- MDLabel:
- text: app.role
- MDScreen:
- name: "diary"
- MDLabel:
- text: "Diary"
- halign: "center"
- MDScreen:
- name: "progress"
- MDLabel:
- text: "Progress"
- halign: "center"
- MDScreen:
- name: "achievements"
- MDLabel:
- text: "Achievements"
- halign: "center"
- MDScreen:
- name: "subjects"
- MDLabel:
- text: "Subjects"
- halign: "center"
- MDNavigationDrawer:
- id: nav_drawer
- radius: (0, 16, 16, 0)
- MDNavigationDrawerMenu:
- MDNavigationDrawerHeader:
- title: app.full_name
- title_color: "#ef687e"
- text: app.role
- spacing: "15dp"
- padding: "12dp", 0, 0, "56dp"
- MDNavigationDrawerLabel:
- text: "Дневник"
- DrawerClickableItem:
- text: "Профиль"
- on_press:
- nav_drawer.set_state("close")
- screen_manager.current = "profile"
- DrawerClickableItem:
- text: "Дневник"
- on_press:
- nav_drawer.set_state("close")
- screen_manager.current = "diary"
- DrawerClickableItem:
- text: "Успеваемость"
- on_press:
- nav_drawer.set_state("close")
- screen_manager.current = "progress"
- DrawerClickableItem:
- text: "Достижения"
- on_press:
- nav_drawer.set_state("close")
- screen_manager.current = "achievements"
- DrawerClickableItem:
- text: "Предметы"
- on_press:
- nav_drawer.set_state("close")
- screen_manager.current = "subjects"
- MDNavigationDrawerDivider:
- # MDNavigationDrawerLabel:
- # text: ""
- # DrawerLabelItem:
- # icon: "information-outline"
- # text: "Label"
- # DrawerLabelItem:
- # icon: "information-outline"
- # text: "Label"
Advertisement
Add Comment
Please, Sign In to add comment