Guest User

Menu.kv

a guest
Jan 3rd, 2023
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.73 KB | None | 0 0
  1. <DrawerClickableItem@MDNavigationDrawerItem>
  2. focus_color: "#5e1f38"
  3. text_color: "#f29097"
  4. icon_color: "#ef687e"
  5. ripple_color: "#ef687e"
  6. selected_color: "#ef687e"
  7.  
  8. <DrawerLabelItem@MDNavigationDrawerItem>
  9. text_color: "#87cefa"
  10. icon_color: "#4a4939"
  11. focus_behavior: True
  12. selected_color: "#4a4939"
  13. _no_ripple_effect: True
  14. <UI>
  15.  
  16. MDList:
  17.  
  18. OneLineListItem:
  19. text: "Профиль"
  20. on_press:
  21. root.nav_drawer.set_state("close")
  22. root.screen_manager.current = "diary"
  23.  
  24.  
  25. OneLineListItem:
  26. text: "Дневник"
  27. on_press:
  28. root.nav_drawer.set_state("close")
  29. root.screen_manager.current = "diary"
  30.  
  31. Screen:
  32.  
  33. MDNavigationLayout:
  34.  
  35. MDScreenManager:
  36.  
  37. MDScreen:
  38. MDTopAppBar:
  39. title: "Электронный журнал"
  40. elevation: 4
  41. pos_hint: {"top": 1}
  42. md_bg_color: "#ef687e"
  43. specific_text_color: "#5e1f38"
  44. left_action_items: [["menu", lambda x: nav_drawer.set_state("open")]]
  45.  
  46. MDNavigationLayout:
  47. id: navLayout
  48. MDScreenManager:
  49. id: screen_manager
  50.  
  51. MDScreen:
  52. name: "profile"
  53.  
  54. MDFloatLayout:
  55. MDBoxLayout:
  56. orientation: 'vertical'
  57. spacing: '5dp'
  58. MDLabel:
  59. text: 'app.full_name'
  60. MDLabel:
  61. text: app.role
  62.  
  63. MDScreen:
  64. name: "diary"
  65.  
  66. MDLabel:
  67. text: "Diary"
  68. halign: "center"
  69.  
  70. MDScreen:
  71. name: "progress"
  72.  
  73. MDLabel:
  74. text: "Progress"
  75. halign: "center"
  76.  
  77. MDScreen:
  78. name: "achievements"
  79.  
  80. MDLabel:
  81. text: "Achievements"
  82. halign: "center"
  83.  
  84. MDScreen:
  85. name: "subjects"
  86.  
  87. MDLabel:
  88. text: "Subjects"
  89. halign: "center"
  90.  
  91.  
  92. MDNavigationDrawer:
  93. id: nav_drawer
  94. radius: (0, 16, 16, 0)
  95.  
  96.  
  97. MDNavigationDrawerMenu:
  98.  
  99. MDNavigationDrawerHeader:
  100. title: app.full_name
  101. title_color: "#ef687e"
  102. text: app.role
  103. spacing: "15dp"
  104. padding: "12dp", 0, 0, "56dp"
  105.  
  106. MDNavigationDrawerLabel:
  107. text: "Дневник"
  108.  
  109. DrawerClickableItem:
  110. text: "Профиль"
  111. on_press:
  112. nav_drawer.set_state("close")
  113. screen_manager.current = "profile"
  114.  
  115. DrawerClickableItem:
  116. text: "Дневник"
  117. on_press:
  118. nav_drawer.set_state("close")
  119. screen_manager.current = "diary"
  120.  
  121. DrawerClickableItem:
  122. text: "Успеваемость"
  123. on_press:
  124. nav_drawer.set_state("close")
  125. screen_manager.current = "progress"
  126.  
  127. DrawerClickableItem:
  128. text: "Достижения"
  129. on_press:
  130. nav_drawer.set_state("close")
  131. screen_manager.current = "achievements"
  132.  
  133. DrawerClickableItem:
  134. text: "Предметы"
  135. on_press:
  136. nav_drawer.set_state("close")
  137. screen_manager.current = "subjects"
  138.  
  139. MDNavigationDrawerDivider:
  140.  
  141. # MDNavigationDrawerLabel:
  142. # text: ""
  143.  
  144. # DrawerLabelItem:
  145. # icon: "information-outline"
  146. # text: "Label"
  147.  
  148. # DrawerLabelItem:
  149. # icon: "information-outline"
  150. # text: "Label"
Advertisement
Add Comment
Please, Sign In to add comment