mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-24 04:28:58 +00:00
- integrate the PUK unblock flow into the Onboarding and Login screen - added a dedicated SB page for it - remove the `Locked` keycard state everywhere in favor of `BlockedPIN` and `BlockedPUK` - fix the various "Locked" buttons, based on the context and the state of the keycard Fixes: #17092
12 lines
234 B
QML
12 lines
234 B
QML
import QtQuick 2.15
|
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
StatusButton {
|
|
id: root
|
|
|
|
implicitWidth: 320
|
|
// inside a Column (or another Positioner), make all but the first button outline
|
|
isOutline: !root.Positioner.isFirstItem
|
|
}
|