status-desktop/ui/app/mainui/SplashScreen.qml
Lukáš Tinkl a93320f684 fix(main): replace the frozen splash screen with an animator
this runs on the GPU, therefore not prone to main thread being blocked

Fixes: #9524
2023-02-13 19:40:00 +01:00

24 lines
516 B
QML

import QtQuick 2.15
import QtQuick.Layouts 1.15
import StatusQ.Core 0.1
import utils 1.0
import shared 1.0
Item {
ColumnLayout {
anchors.centerIn: parent
LoadingAnimation {
Layout.alignment: Qt.AlignHCenter
Layout.preferredWidth: 128
Layout.preferredHeight: 128
source: Style.svg("status-logo-circle")
}
StatusBaseText {
Layout.alignment: Qt.AlignHCenter
text: qsTr("Loading Status...")
}
}
}