Newer
Older
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
import QtQuick 2.4
import "qrc:/widgets"
import "../../../"
DapAbstractRightPanel
{
dapHeaderData:
Row
{
anchors.fill: parent
anchors.leftMargin: 16 * pt
anchors.rightMargin: 16 * pt
anchors.topMargin: 12 * pt
anchors.bottomMargin: 12 * pt
DapButton
{
id: buttonClose
height: 16 * pt
width: 16 * pt
heightImageButton: height
widthImageButton: width
colorBackgroundNormal: "#F8F7FA"
colorBackgroundHover: "#F8F7FA"
normalImageButton: "qrc:/res/icons/close_icon.png"
hoverImageButton: "qrc:/res/icons/close_icon_hover.png"
}
}
dapContentItemData:
Rectangle
{
anchors.fill: parent
anchors.leftMargin: 16 * pt
anchors.rightMargin: 16 * pt
color: "transparent"
Rectangle
{
id: rectangleTop
anchors.top: parent.top
anchors.bottom: textMessage.top
anchors.left: parent.left
anchors.right: parent.right
color: "transparent"
}
Text
{
id: textMessage
text: qsTr("Wallet created\nsuccessfully")
horizontalAlignment: Text.AlignHCenter
anchors.horizontalCenter: parent.horizontalCenter
anchors.topMargin: 24 * pt
anchors.bottom: rectangleCenter.top
anchors.bottomMargin: 24 * pt
color: "#070023"
font.family: DapMainApplicationWindow.dapFontRobotoRegular.name
font.pointSize: 16 * pt
}
Rectangle
{
id: rectangleCenter
height: 118 * pt
anchors.bottom: buttonDone.top
anchors.left: parent.left
anchors.right: parent.right
color: "transparent"
}
DapButton
{
id: buttonDone
heightButton: 44 * pt
widthButton: 130 * pt
anchors.horizontalCenter: parent.horizontalCenter
anchors.bottom: rectangleBottom.top
anchors.topMargin: 24 * pt
anchors.bottomMargin: 24 * pt
checkable: true
textButton: qsTr("Done")
existenceImage: false
horizontalAligmentText: Text.AlignHCenter
indentTextRight: 0
fontSizeButton: 18 * pt
colorTextButton: buttonDone.checked ? "#3E3853" : "#FFFFFF"
colorBackgroundButton: "#3E3853"
}
Rectangle
{
id: rectangleBottom
height: 189 * pt
anchors.bottom: parent.bottom
anchors.left: parent.left
anchors.right: parent.right
color: "transparent"
}
}
}