mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-02 01:38:00 +00:00
3705249e40
- 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
48 lines
1.1 KiB
QML
48 lines
1.1 KiB
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
import QtQuick.Layouts 1.15
|
|
|
|
import Storybook 1.0
|
|
|
|
import utils 1.0
|
|
import mainui 1.0
|
|
import shared.panels 1.0
|
|
|
|
SplitView {
|
|
Logs { id: logs }
|
|
SplitView {
|
|
SplitView.fillHeight: true
|
|
SplitView.fillWidth: true
|
|
orientation: Qt.Vertical
|
|
DidYouKnowSplashScreen {
|
|
id: splashScreen
|
|
SplitView.fillHeight: true
|
|
SplitView.fillWidth: true
|
|
progress: progressSlider.position
|
|
messagesEnabled: ctrlMessagesEnabled.checked
|
|
}
|
|
}
|
|
|
|
Pane {
|
|
SplitView.minimumWidth: 300
|
|
SplitView.preferredWidth: 300
|
|
ColumnLayout {
|
|
Layout.fillWidth: true
|
|
Label {
|
|
text: "Progress"
|
|
}
|
|
Slider {
|
|
id: progressSlider
|
|
}
|
|
Switch {
|
|
id: ctrlMessagesEnabled
|
|
text: "Messages enabled"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// category: Panels
|
|
// status: good
|
|
// https://www.figma.com/file/17fc13UBFvInrLgNUKJJg5/Kuba⎜Desktop?node-id=25878%3A518438&t=C7xTpNib38t7s7XU-4
|