mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 05:52:41 +00:00
cb07625a57
Closes: #11716
40 lines
785 B
QML
40 lines
785 B
QML
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.15
|
|
|
|
import StatusQ.Components 0.1
|
|
|
|
Item {
|
|
ColumnLayout {
|
|
anchors.centerIn: parent
|
|
spacing: 100
|
|
|
|
StatusDotsLoadingIndicator {
|
|
Layout.alignment: Qt.AlignHCenter
|
|
|
|
dotsDiameter: 5
|
|
duration: 500
|
|
dotsColor: "blue"
|
|
}
|
|
|
|
StatusDotsLoadingIndicator {
|
|
Layout.alignment: Qt.AlignHCenter
|
|
|
|
dotsDiameter: 15
|
|
duration: 1000
|
|
dotsColor: "orange"
|
|
spacing: 16
|
|
}
|
|
|
|
StatusDotsLoadingIndicator {
|
|
Layout.alignment: Qt.AlignHCenter
|
|
|
|
dotsDiameter: 30
|
|
duration: 1500
|
|
dotsColor: "green"
|
|
spacing: 30
|
|
}
|
|
}
|
|
}
|
|
|
|
// category: Components
|