diff options
Diffstat (limited to 'wizard')
| -rw-r--r-- | wizard/WizardMain.qml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/wizard/WizardMain.qml b/wizard/WizardMain.qml index 3b44a23f..49351443 100644 --- a/wizard/WizardMain.qml +++ b/wizard/WizardMain.qml @@ -1,7 +1,9 @@ import QtQuick 2.2 +import "../components" Rectangle { id: wizard + signal useMoneroClicked() border.color: "#DBDBDB" border.width: 1 color: "#FFFFFF" @@ -150,4 +152,19 @@ Rectangle { onClicked: wizard.switchPage(false) } } + + StandardButton { + id: sendButton + anchors.right: parent.right + anchors.bottom: parent.bottom + anchors.margins: 50 + width: 110 + text: qsTr("USE MONERO") + shadowReleasedColor: "#FF4304" + shadowPressedColor: "#B32D00" + releasedColor: "#FF6C3C" + pressedColor: "#FF4304" + visible: parent.currentPage === 6 + onClicked: wizard.useMoneroClicked() + } } |
