1
0

kivy: add sign/broadcast to tx dialog

This commit is contained in:
ThomasV
2016-02-13 08:15:06 +01:00
parent 5f590c9c64
commit 744b74f2b5
4 changed files with 141 additions and 77 deletions

View File

@@ -1,42 +0,0 @@
#:import Decimal decimal.Decimal
Popup:
id: popup
title: _('Transaction')
AnchorLayout:
anchor_x: 'center'
BoxLayout:
orientation: 'vertical'
Label:
id: txid_label
text_size: self.width, None
size: self.texture_size
Label:
id: status_label
text_size: self.width, None
size_hint: 1, 0.3
Label:
id: date_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: fee_label
text_size: self.width, None
size_hint: 1, 0.3
Widget:
size_hint: 1, 0.3
BoxLayout:
size_hint: 1, None
height: '48dp'
Widget:
size_hint: 0.5, None
height: '48dp'
Button:
size_hint: 0.5, None
height: '48dp'
text: _('OK')
on_release: popup.dismiss()