You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wowlet/src/vr/qml/wallet/send/SendPageDashboard.qml

65 lines
1.6 KiB

import QtQuick 2.7
import QtQuick.Controls 2.0
import QtQuick.Layouts 1.3
import "../../common"
ColumnLayout {
id: root
Layout.fillWidth: true
MyText {
Layout.fillWidth: true
wrap: true
text: "How to transfer Wownero?"
}
RowLayout {
Layout.topMargin: 30
Layout.fillWidth: true
spacing: 30
Rectangle {
color: sendStateController.exitedColor
Layout.fillWidth: true
Layout.fillHeight: true
MouseArea {
anchors.fill: parent
hoverEnabled: true
onEntered: parent.color = sendStateController.enteredColor
onExited: parent.color = sendStateController.exitedColor
onPressed: parent.color = sendStateController.pressedColor
onClicked: {
sendStateView.state = "pinPage";
}
}
}
Rectangle {
color: sendStateController.exitedColor
Layout.fillWidth: true
Layout.fillHeight: true
MouseArea {
anchors.fill: parent
hoverEnabled: true
onEntered: parent.color = sendStateController.enteredColor
onExited: parent.color = sendStateController.exitedColor
onPressed: parent.color = sendStateController.pressedColor
onClicked: {
sendStateView.state = "qrPage";
}
}
}
}
Item {
Layout.fillHeight: true
Layout.fillWidth: true
}
function onPageCompleted(previousView){
}
}