LBRY-Vault/gui/kivy/uix/ui_screens/password.kv
2015-10-13 22:44:43 +02:00

27 lines
589 B
Text

Popup:
id: pw
title: _('Password')
BoxLayout:
orientation: 'vertical'
GridLayout:
cols: 2
Label:
text: 'Password'
size_hint: 1, None
height: '48dp'
TextInput:
id: text_input
size_hint: 1, None
password: True
multiline: False
Button:
size_hint: 1, None
height: '48dp'
text: _('Close')
on_release: pw.dismiss()
Widget:
size_hint: 1, 1