mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-23 20:18:47 +00:00
- the manual "I've insterted a keycard" reload buttons are no longer needed; we can rely solely on the HW keycard state - when doing a "Restart", also reset the internal mock/store states Fixes #17234
24 lines
595 B
QML
24 lines
595 B
QML
import QtQuick 2.15
|
|
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
import AppLayouts.Onboarding2.controls 1.0
|
|
|
|
KeycardBasePage {
|
|
id: root
|
|
|
|
signal createProfileWithEmptyKeycardRequested()
|
|
|
|
title: qsTr("Keycard is empty")
|
|
subtitle: qsTr("There is no profile key pair on this Keycard")
|
|
image.source: Theme.png("onboarding/keycard/error")
|
|
|
|
buttons: [
|
|
MaybeOutlineButton {
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
text: qsTr("Create new profile on this Keycard")
|
|
onClicked: root.createProfileWithEmptyKeycardRequested()
|
|
}
|
|
]
|
|
}
|