mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-10 13:46:35 +00:00
- implement the basic Onboarding UI skeleton and the Create Profile flows - adjust the PasswordView and EnterSeedPhrase views to the latest design - add the main OnboardingLayout and StatusPinInput pages to Storybook - change terminology app-wide: "Seed phrase" -> "Recovery phrase" - implement the Login flows (seed, sync, keycard) - amend the keycard flow sequences with separate (non) empty page Fixes #16719 Fixes #16742 Fixes #16743
18 lines
266 B
QML
18 lines
266 B
QML
import QtQuick 2.15
|
|
|
|
import StatusQ.Popups.Dialog 0.1
|
|
|
|
import shared.views 1.0
|
|
|
|
StatusDialog {
|
|
id: root
|
|
|
|
title: qsTr("How to get a pairing code on...")
|
|
horizontalPadding: 24
|
|
verticalPadding: 32
|
|
footer: null
|
|
|
|
SyncingCodeInstructions {
|
|
}
|
|
}
|