99 lines
2.2 KiB
QML
99 lines
2.2 KiB
QML
import QtQuick 2.0
|
|
import QtQuick.Layouts 1.12
|
|
|
|
import StatusQ.Controls 0.1
|
|
import StatusQ.Components 0.1
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
Column {
|
|
id: root
|
|
|
|
spacing: 4
|
|
|
|
QtObject {
|
|
id: d
|
|
readonly property int listItemHeight: 40
|
|
}
|
|
|
|
RowLayout {
|
|
height: d.listItemHeight
|
|
|
|
StatusBaseText {
|
|
Layout.alignment: Qt.AlignVCenter
|
|
font.pixelSize: 15
|
|
color: Theme.palette.baseColor1
|
|
text: qsTr("1. Open Status App on your mobile device")
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
height: d.listItemHeight
|
|
|
|
StatusBaseText {
|
|
Layout.alignment: Qt.AlignVCenter
|
|
font.pixelSize: 15
|
|
color: Theme.palette.baseColor1
|
|
text: qsTr("2. Open your")
|
|
}
|
|
StatusRoundIcon {
|
|
asset.name: "profile"
|
|
}
|
|
StatusBaseText {
|
|
Layout.alignment: Qt.AlignVCenter
|
|
font.pixelSize: 15
|
|
color: Theme.palette.directColor1
|
|
text: qsTr("Profile")
|
|
}
|
|
|
|
}
|
|
|
|
RowLayout {
|
|
height: d.listItemHeight
|
|
|
|
StatusBaseText {
|
|
Layout.alignment: Qt.AlignVCenter
|
|
font.pixelSize: 15
|
|
color: Theme.palette.baseColor1
|
|
text: qsTr("3. Go to")
|
|
}
|
|
StatusRoundIcon {
|
|
asset.name: "rotate"
|
|
}
|
|
StatusBaseText {
|
|
Layout.alignment: Qt.AlignVCenter
|
|
text: qsTr("Syncing")
|
|
font.pixelSize: 15
|
|
color: Theme.palette.directColor1
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
height: d.listItemHeight
|
|
|
|
StatusBaseText {
|
|
Layout.alignment: Qt.AlignVCenter
|
|
text: qsTr("4. Tap")
|
|
font.pixelSize: 15
|
|
color: Theme.palette.baseColor1
|
|
}
|
|
StatusBaseText {
|
|
Layout.alignment: Qt.AlignVCenter
|
|
text: qsTr("Sync new device")
|
|
font.pixelSize: 15
|
|
color: Theme.palette.directColor1
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
height: d.listItemHeight
|
|
|
|
StatusBaseText {
|
|
Layout.alignment: Qt.AlignVCenter
|
|
text: qsTr("5. Scan or enter the code ")
|
|
font.pixelSize: 15
|
|
color: Theme.palette.baseColor1
|
|
}
|
|
}
|
|
}
|