status-desktop/storybook/pages/DidYouKnowSplashScreenPage.qml
Alex Jbanca 4fca725b55 fix(DidYouKnowSplashScreen): Implement UI changes
1. Update messages
2. Increase messages shuffle time to 7 sec
3. Add fade in animation to DidYouKnow messages
4. Update storybook page
2023-02-27 10:44:58 +02:00

39 lines
789 B
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
}
}
Pane {
SplitView.minimumWidth: 300
SplitView.preferredWidth: 300
RowLayout {
Label {
text: "Progress"
}
Slider {
id: progressSlider
}
}
}
}