status-desktop/storybook/pages/DidYouKnowSplashScreenPage.qml
Alex Jbanca 009861c7b4 fix(SplashScreen): Add Did You Know Splash screen
Closing #9470
Adding Did You Know Splash Screen that will be shown when AppMain is completed.
The SplashScreen runs for 30 seconds and will randomly iterate through `fun messages` every 5 seconds.
2023-02-16 16:06:50 +02:00

38 lines
824 B
QML

import QtQuick 2.15
import QtQuick.Controls 2.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 {
SplitView.fillHeight: true
SplitView.fillWidth: true
NumberAnimation on progress { from: 0.0; to: 1; duration: 10000; loops: Animation.Infinite}
}
LogsAndControlsPanel {
id: logsAndControlsPanel
SplitView.minimumHeight: 100
SplitView.preferredHeight: 200
logsView.logText: logs.logText
}
}
Pane {
SplitView.minimumWidth: 300
SplitView.preferredWidth: 300
}
}