Advertisement
nio74

inserimento.kv

Jul 28th, 2021
353
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.63 KB | None | 0 0
  1. <Inserimento>
  2.  
  3.  
  4.  
  5.     MDBoxLayout:
  6.         id:"layout"
  7.         orientation: "vertical"
  8.         size_hint_y: None
  9.         height: 50
  10.         spacing: 5
  11.         md_bg_color: app.theme_cls.bg_normal
  12.         padding: [0, 0, 10, 0]
  13.  
  14.  
  15.         MDIconButton:
  16.             icon: 'arrow-left'
  17.             theme_text_color: 'Custom'
  18.             text_color: app.theme_cls.opposite_bg_normal
  19.             user_font_size: 18
  20.             size_hint: (None, None)
  21.             pos_hint: {'center_y':.5}
  22.             size: 30, 30
  23.             padding: 0
  24.             pos_hint: {'center_y':.5}
  25.             on_press: root.manager.current = 'HomePage'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement