-
Notifications
You must be signed in to change notification settings - Fork 4
/
create_wallet.kv
43 lines (43 loc) · 1.33 KB
/
create_wallet.kv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<CreateWalletScreen>:
FloatLayout:
Label:
text: "Wallet Password : "
pos_hint: {'x': .07, 'y': .7}
size_hint: .23, .07
halign: 'left'
font_size: '28sp'
TextInput:
id: password
pos_hint: {'x': .35, 'y': .7}
size_hint: .6, .07
password: 'true'
font_size: '22sp'
Label:
text: "Verify Password : "
pos_hint: {'x': .075, 'y': .5}
size_hint: .23, .07
halign: 'left'
font_size: '28sp'
TextInput:
id: retype_password
pos: 400, 500
pos_hint: {'x': .35, 'y': .5}
size_hint: .6, .07
password: 'true'
font_size: '22sp'
ActionBar:
pos_hint: {'x': .0, 'y': .9}
ActionView:
use_separator: True
ActionPrevious:
app_icon:'img/logo.png'
title: ' Create Wallet'
with_previous: False
ActionOverflow:
ActionButton:
icon:''
disabled: True
ActionButton:
icon:'img/next.png'
text: 'Next'
on_press: root.create_wallet_callback()