1
0

kivy: use RecycleView in OutputList

This commit is contained in:
Janus
2018-06-22 17:38:58 +02:00
parent 4f85615734
commit 45b6afe190
3 changed files with 33 additions and 28 deletions

View File

@@ -57,17 +57,15 @@ Builder.load_string('''
BoxLabel:
text: _('Transaction fee') if root.fee_str else ''
value: root.fee_str
TopLabel:
text: _('Outputs') + ':'
OutputList:
height: self.minimum_height
size_hint: 1, None
id: output_list
TopLabel:
text: _('Transaction ID') + ':' if root.tx_hash else ''
TxHashLabel:
data: root.tx_hash
name: _('Transaction ID')
TopLabel:
text: _('Outputs') + ':'
OutputList:
id: output_list
Widget:
size_hint: 1, 0.1