wowlet/src/vr/qml/wallet/send/SendPageQR.qml

52 lines
908 B
QML
Raw Normal View History

2021-04-05 11:37:41 +00:00
import QtQuick 2.7
import QtQuick.Controls 2.0
import QtQuick.Layouts 1.3
import "../../common"
ColumnLayout {
id: root
spacing: 20
Layout.fillWidth: true
MyText {
Layout.fillWidth: true
wrap: true
2021-04-08 01:40:44 +00:00
fontColor: Style.fontColorBright
2021-04-05 11:37:41 +00:00
text: "Look at a QR code in VR and take a screenshot."
}
MyPushButton {
id: continueButton
text: "Take in-game screenshot"
Layout.preferredWidth: 490
onClicked: {
// QR thingy
}
}
MyText {
id: statusMessage
visible: false
Layout.fillWidth: true
wrap: true
2021-04-08 01:40:44 +00:00
fontColor: Style.fontColorBright
2021-04-05 11:37:41 +00:00
text: "Status message."
}
Item {
Layout.fillHeight: true
Layout.fillWidth: true
}
2021-04-09 16:00:12 +00:00
function reset() {
}
2021-04-05 11:37:41 +00:00
2021-04-09 16:00:12 +00:00
function onPageCompleted(previousView){
reset();
2021-04-05 11:37:41 +00:00
}
}