Guest User

kivymd <main> snippet

a guest
Nov 30th, 2021
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. <Main>:
  2. BoxLayout:
  3. orientation: 'vertical'
  4. MDNavigationLayout:
  5. ScreenManager:
  6. MDScreen:
  7. MDToolbar:
  8. title: root.user1_str
  9. elevation: 10
  10. normal_color: 1, 1, 1, 1
  11. #color_active: 1, 1, 1, 1
  12. pos_hint: {"top": 1}
  13. md_bg_color: get_color_from_hex("#FFFFFF")
  14. specific_text_color: get_color_from_hex("#4a4939")
  15. left_action_items:
  16. [['menu', lambda x: nav_drawer.set_state("open")]]
  17.  
  18. MDToolbar:
  19. #title: root.user1_str
  20. elevation: 10
  21. normal_color: 1, 1, 1, 1
  22. #color_active: 1, 1, 1, 1
  23. pos_hint: {"bottom": 1}
  24. md_bg_color: get_color_from_hex("#FFFFFF")
  25. specific_text_color: get_color_from_hex("#4a4939")
  26. MDTextFieldRound:
  27. #icon_left: 'magnify'
  28. hint_text: "Type anything here..."
  29. #pos_hint: {"bottom": 1}
  30. normal_color: 236/255, 236/255, 236/255, 1
  31. color_active: 1, 1, 1, 1
  32.  
  33. MDNavigationDrawer:
  34. type: "standard"
  35. id: contacts_sidebar
  36. #close_on_click: False
  37.  
  38. elevation: 0
  39. BoxLayout:
  40. adaptive_height: True
  41. orientation: 'vertical'
  42. padding: 20
  43. padding_y: 20
  44.  
  45. MDTextFieldRound:
  46. icon_left: 'magnify'
  47. hint_text: app.search_hint
  48. normal_color: 1, 1, 1, 1
  49. color_active: 1, 1, 1, 1
  50.  
  51. ScrollView:
  52. MDList:
  53. OneLineAvatarListItem:
  54. #no_border: True
  55. text: root.user1_str
  56. on_release: root.user_1()
  57. ImageLeftWidget:
  58. source: "bin/ui/assets/default_icon.png"
Advertisement
Add Comment
Please, Sign In to add comment