mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-08 12:46:08 +00:00
e859250501
fix other blurry images on hdpi screens fix image size ensure plist has high res directive addd directive to info runner
86 lines
2.4 KiB
QML
86 lines
2.4 KiB
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import "../shared"
|
|
import "../imports"
|
|
|
|
Page {
|
|
id: page
|
|
property alias btnExistingKey: btnExistingKey
|
|
property alias btnGenKey: btnGenKey
|
|
|
|
Item {
|
|
id: container
|
|
width: 425
|
|
height: {
|
|
let h = 0
|
|
const children = this.children
|
|
Object.keys(children).forEach(function (key) {
|
|
const child = children[key]
|
|
h += child.height + Theme.padding
|
|
})
|
|
return h
|
|
}
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
Image {
|
|
id: keysImg
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
anchors.top: parent.top
|
|
fillMode: Image.PreserveAspectFit
|
|
source: "img/keys@2x.jpg"
|
|
}
|
|
|
|
StyledText {
|
|
id: txtTitle1
|
|
text: qsTr("Get your keys")
|
|
anchors.topMargin: Theme.padding
|
|
font.bold: true
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
anchors.top: keysImg.bottom
|
|
font.letterSpacing: -0.2
|
|
font.pixelSize: 22
|
|
}
|
|
|
|
StyledText {
|
|
id: txtDesc1
|
|
color: Theme.darkGrey
|
|
text: qsTr("A set of keys controls your account. Your keys live on your device, so only you can use them.")
|
|
horizontalAlignment: Text.AlignHCenter
|
|
wrapMode: Text.WordWrap
|
|
anchors.right: parent.right
|
|
anchors.left: parent.left
|
|
anchors.top: txtTitle1.bottom
|
|
anchors.topMargin: Theme.padding
|
|
font.pixelSize: 15
|
|
}
|
|
|
|
|
|
StyledButton {
|
|
id: btnGenKey
|
|
height: 44
|
|
anchors.top: txtDesc1.bottom
|
|
anchors.topMargin: 40
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
label: qsTr("I'm new, generate keys")
|
|
}
|
|
|
|
StyledButton {
|
|
id: btnExistingKey
|
|
label: qsTr("Access existing key")
|
|
anchors.top: btnGenKey.bottom
|
|
anchors.topMargin: Theme.padding
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
height: 44
|
|
background: Rectangle {color: "transparent"}
|
|
}
|
|
}
|
|
}
|
|
|
|
/*##^##
|
|
Designer {
|
|
D{i:0;autoSize:true;formeditorColor:"#ffffff";formeditorZoom:0.8999999761581421;height:760;width:1080}
|
|
}
|
|
##^##*/
|