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.
26 lines
579 B
26 lines
579 B
Popup: |
|
id: settings |
|
title: _('Settings') |
|
|
|
BoxLayout: |
|
|
|
orientation: 'vertical' |
|
size_hint_y: None |
|
|
|
GridLayout: |
|
cols: 2 |
|
Label: |
|
text: _('Base unit') |
|
height: '48dp' |
|
Spinner: |
|
text: 'BTC' |
|
values: ('BTC', 'mBTC') |
|
height: '48dp' |
|
|
|
Button: |
|
#size_hint_y: None |
|
height: '48dp' |
|
text: _('Close') |
|
on_release: settings.dismiss() |
|
#Widget: |
|
# size_hint_y: None
|
|
|