You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.4 KiB
60 lines
1.4 KiB
<RequestLabel@Label>
|
|
#color: .305, .309, .309, 1
|
|
text_size: self.width, None
|
|
halign: 'left'
|
|
valign: 'top'
|
|
|
|
<RequestItem@CardItem>
|
|
address: ''
|
|
memo: ''
|
|
amount: ''
|
|
status: ''
|
|
date: ''
|
|
icon: 'atlas://gui/kivy/theming/light/important'
|
|
Image:
|
|
id: icon
|
|
source: root.icon
|
|
size_hint: None, 1
|
|
width: self.height *.54
|
|
mipmap: True
|
|
BoxLayout:
|
|
spacing: '8dp'
|
|
height: '32dp'
|
|
orientation: 'vertical'
|
|
Widget
|
|
RequestLabel:
|
|
text: root.address
|
|
shorten: True
|
|
RequestLabel:
|
|
text: root.memo
|
|
color: .699, .699, .699, 1
|
|
font_size: '13sp'
|
|
shorten: True
|
|
Widget
|
|
RequestLabel:
|
|
halign: 'right'
|
|
font_size: '15sp'
|
|
size_hint: None, 1
|
|
width: '110sp'
|
|
text: root.amount
|
|
|
|
|
|
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
|
|
spacing: '2dp'
|
|
padding: '12dp'
|
|
|