-WIP-electrum-btcp/gui/kivy/uix/ui_screens/requests.kv

43 lines
971 B
Plaintext
Raw Normal View History

2015-12-12 07:54:32 -08:00
<RequestLabel@Label>
#color: .305, .309, .309, 1
text_size: self.size
halign: 'left'
valign: 'middle'
2015-12-12 07:54:32 -08:00
<RequestItem@CardItem>
address: ''
memo: ''
amount: ''
status: ''
date: ''
2015-12-12 07:54:32 -08:00
RequestLabel:
text: root.address
font_size: '13dp'
2015-12-12 07:54:32 -08:00
RequestLabel:
text: root.memo
2015-12-12 07:54:32 -08:00
RequestLabel:
text: root.amount
#InvoicesLabel:
# text: root.status
2015-12-12 07:54:32 -08:00
RequestsScreen:
name: 'requests'
BoxLayout:
orientation: 'vertical'
spacing: '1dp'
ScrollView:
canvas.before:
Color:
rgba: .8901, .8901, .8901, 0
Rectangle:
size: self.size
pos: self.pos
GridLayout:
cols: 1
id: requests_container
size_hint_y: None
height: self.minimum_height
2015-12-12 14:23:58 -08:00
spacing: '2dp'
2015-12-12 07:54:32 -08:00
padding: '12dp'