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.
 
 
 
 

53 lines
1.4 KiB

#:import Decimal decimal.Decimal
Popup:
id: popup
title: _('Invoice')
BoxLayout:
orientation: 'vertical'
spacing: '1dp'
Widget:
size_hint: 1, 0.1
GridLayout:
cols:1
size_hint: 1, 1
Label:
id: requestor_label
text_size: self.width, None
size_hint: 1, 0.3
Label:
id: amount_label
text_size: self.width, None
size_hint: 1, 0.3
Label:
id: signature_label
text_size: self.width, None
size_hint: 1, 0.3
Label:
id: expiration_label
text_size: self.width, None
size_hint: 1, 0.3
Label:
id: memo_label
text_size: self.width, None
size_hint: 1, 0.3
Label:
id: txid_label
text_size: self.width, None
size: self.texture_size
Widget:
size_hint: 1, 0.5
BoxLayout:
size_hint: 1, None
height: '48dp'
Widget:
size_hint: 0.5, None
height: '48dp'
Button:
size_hint: 0.5, None
height: '48dp'
text: _('Close')
on_release: popup.dismiss()