/ src / bitmessagekivy / kv / inbox.kv
inbox.kv
 1  <Inbox>:
 2      name: 'inbox'
 3      #transition: NoTransition()
 4      BoxLayout:
 5          orientation: 'vertical'
 6          spacing: dp(5)
 7          SearchBar:
 8              id:inbox_search
 9          GridLayout:
10              id: identi_tag
11              padding: [20, 0, 0, 5]
12              cols: 1
13              size_hint_y: None
14              height: self.minimum_height
15              MDLabel:
16                  id: tag_label
17                  text: ''
18                  font_style: 'Subtitle2'
19          #FloatLayout:
20          #    MDScrollViewRefreshLayout:
21          #        id: refresh_layout
22          #        refresh_callback: root.refresh_callback
23          #        root_layout: root.set_root_layout()
24          #        MDList:
25          #            id: ml
26          BoxLayout:
27              orientation:'vertical'
28              ScrollView:
29                  id: scroll_y
30                  do_scroll_x: False
31                  MDList:
32                      id: ml
33      Loader:
34      ComposerButton:
35  
36  <TimeTagRightSampleWidget>:
37      size_hint:(None, None)
38      font_style: 'Caption'
39      halign: 'center'