mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-11 06:47:01 +00:00
a93320f684
this runs on the GPU, therefore not prone to main thread being blocked Fixes: #9524
24 lines
516 B
QML
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...")
|
|
}
|
|
}
|
|
}
|