wizard: redesign seed page

- move mnemonic seed
- restore height into a separate page
- pdf template
- seed verification
- responsive UI
- accessibility
This commit is contained in:
rating89us
2021-08-23 18:09:22 +02:00
committed by selsta
parent b7ba9437d8
commit 198dfb338c
30 changed files with 24484 additions and 328 deletions

View File

@@ -43,9 +43,10 @@ RowLayout {
property bool autoTransition: true
property alias btnPrev: btnPrev
property alias btnNext: btnNext
property alias wizardProgress: wizardProgress
property string btnPrevText: qsTr("Previous") + translationManager.emptyString
property string btnNextText: qsTr("Next") + translationManager.emptyString
Layout.topMargin: 20
Layout.topMargin: 0
Layout.preferredHeight: 70
Layout.preferredWidth: parent.width
@@ -70,9 +71,11 @@ RowLayout {
MoneroComponents.StandardButton {
id: btnPrev
width: appWindow.width <= 506 ? 45 : appWindow.width <= 660 ? 120 : 180
small: true
text: menuNav.btnPrevText
primary: false
text: appWindow.width <= 506 ? "<" : menuNav.btnPrevText
anchors.left: parent.left
anchors.verticalCenter: parent.verticalCenter
@@ -134,8 +137,9 @@ RowLayout {
MoneroComponents.StandardButton {
id: btnNext
width: appWindow.width <= 506 ? 45 : appWindow.width <= 660 ? 120 : 180
small: true
text: menuNav.btnNextText
text: appWindow.width <= 506 ? ">" : menuNav.btnNextText
anchors.verticalCenter: parent.verticalCenter
anchors.right: parent.right