-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathFreshWalletView.qml
48 lines (47 loc) · 1.3 KB
/
FreshWalletView.qml
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
44
45
46
47
48
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
Pane {
signal createAccountClicked
id: self
background: null
contentItem: ColumnLayout {
VSpacer {
}
Image {
Layout.alignment: Qt.AlignCenter
source: 'qrc:/svg2/fresh_wallet.svg'
}
Label {
Layout.alignment: Qt.AlignCenter
Layout.fillWidth: true
Layout.preferredWidth: 0
Layout.maximumWidth: 250
color: '#FFF'
font.pixelSize: 18
font.weight: 500
horizontalAlignment: Label.AlignHCenter
text: qsTrId('id_welcome_to_your_wallet')
wrapMode: Label.WordWrap
}
Label {
Layout.alignment: Qt.AlignCenter
Layout.topMargin: 10
color: '#FFF'
font.pixelSize: 14
font.weight: 400
horizontalAlignment: Label.AlignHCenter
opacity: 0.6
text: qsTrId('id_create_your_first_account_to')
}
PrimaryButton {
Layout.topMargin: 25
Layout.alignment: Qt.AlignCenter
Layout.minimumWidth: 200
text: qsTrId('id_create_account')
onClicked: self.createAccountClicked()
}
VSpacer {
}
}
}