mirror of
https://github.com/monero-project/monero-gui
synced 2025-01-07 18:56:24 +01:00
70 lines
1.7 KiB
QML
70 lines
1.7 KiB
QML
import QtQuick 2.2
|
||
|
||
Item {
|
||
opacity: 0
|
||
visible: false
|
||
Behavior on opacity {
|
||
NumberAnimation { duration: 100; easing.type: Easing.InQuad }
|
||
}
|
||
|
||
onOpacityChanged: visible = opacity !== 0
|
||
|
||
Row {
|
||
id: dotsRow
|
||
anchors.top: parent.top
|
||
anchors.right: parent.right
|
||
anchors.topMargin: 85
|
||
spacing: 6
|
||
|
||
ListModel {
|
||
id: dotsModel
|
||
ListElement { dotColor: "#36B05B" }
|
||
ListElement { dotColor: "#36B05B" }
|
||
ListElement { dotColor: "#36B05B" }
|
||
ListElement { dotColor: "#36B05B" }
|
||
}
|
||
|
||
Repeater {
|
||
model: dotsModel
|
||
delegate: Rectangle {
|
||
width: 12; height: 12
|
||
radius: 6
|
||
color: dotColor
|
||
}
|
||
}
|
||
}
|
||
|
||
Column {
|
||
id: headerColumn
|
||
anchors.left: parent.left
|
||
anchors.right: parent.right
|
||
anchors.leftMargin: 16
|
||
anchors.rightMargin: 16
|
||
anchors.top: parent.top
|
||
anchors.topMargin: 74
|
||
spacing: 24
|
||
|
||
Text {
|
||
anchors.left: parent.left
|
||
width: headerColumn.width - dotsRow.width - 16
|
||
font.family: "Arial"
|
||
font.pixelSize: 28
|
||
wrapMode: Text.Wrap
|
||
//renderType: Text.NativeRendering
|
||
color: "#3F3F3F"
|
||
text: qsTr("You’re all setup!")
|
||
}
|
||
|
||
Text {
|
||
anchors.left: parent.left
|
||
anchors.right: parent.right
|
||
font.family: "Arial"
|
||
font.pixelSize: 18
|
||
wrapMode: Text.Wrap
|
||
//renderType: Text.NativeRendering
|
||
color: "#4A4646"
|
||
text: qsTr("An overview of your Monero configuration is below:")
|
||
}
|
||
}
|
||
}
|