kivy: better layout for tx window

This commit is contained in:
ThomasV 2015-10-29 04:58:32 +01:00
parent 69d983fcd5
commit b70f8c888a
1 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,40 @@
#:import Decimal decimal.Decimal
Popup:
id: popup
title: _('Transaction')
tx_hash: ''
AnchorLayout:
anchor_x: 'center'
BoxLayout:
orientation: 'vertical'
GridLayout:
size_hint: 1, None
height: '300dp'
cols: 2
Label:
text: "txid"
Label:
text: popup.tx_hash
size_hint_y: None
text_size: self.width, None
BoxLayout:
size_hint: 1, None
height: '48dp'
Widget:
size_hint: 0.7, None
height: '48dp'
Button:
size_hint: 0.3, None
height: '48dp'
text: _('OK')
on_release: popup.dismiss()
Widget:
size_hint: 1, None