kivy: layout

This commit is contained in:
ThomasV 2015-12-02 19:25:07 +01:00
parent 58acb6c759
commit f651742f86
2 changed files with 15 additions and 16 deletions

View File

@ -195,7 +195,7 @@
<AmountButton@Button>:
background_color: .238, .585, .878, 0
halign: 'left'
text_size: (self.width-15, None)
text_size: (self.width-10, None)
size_hint: 0.5, None
default_text: 'Amount'
text: self.default_text

View File

@ -12,21 +12,14 @@ Popup:
orientation: 'vertical'
size_hint: 0.8, 1
BoxLayout:
size_hint: 1, None
size_hint: 1, 1
height: '48dp'
Label:
id: a
amount: ''
is_fiat: False
text: app.get_amount_text(self.amount, self.is_fiat)
Widget:
size_hint_x: 1
Button:
id: button_fiat
size_hint: 1, None
height: '48dp'
text: '/'
on_release: a.is_fiat = not a.is_fiat
size_hint: 1, 1
Widget:
size_hint: 1, 1
@ -77,6 +70,17 @@ Popup:
height: '48dp'
text: 'Max'
on_release: a.amount = app.get_max_amount()
Button:
id: button_fiat
size_hint: 1, None
height: '48dp'
text: '/'
on_release: a.is_fiat = not a.is_fiat
Button:
size_hint: 1, None
height: '48dp'
text: 'Clear'
on_release: a.amount = ''
Widget:
size_hint: 1, None
@ -84,13 +88,8 @@ Popup:
BoxLayout:
size_hint: 1, None
height: '48dp'
Button:
size_hint: 1, None
height: '48dp'
text: 'Clear'
on_release: a.amount = ''
Widget:
size_hint: 1, None
size_hint: 2, None
height: '48dp'
Button:
size_hint: 1, None