2019-07-13 19:39:01 +10:00
|
|
|
import QtQuick 2.12
|
2019-07-21 21:14:16 +10:00
|
|
|
import "Base"
|
2019-06-27 16:31:03 +10:00
|
|
|
|
2019-08-28 09:47:58 +10:00
|
|
|
Item {
|
|
|
|
Rectangle {
|
|
|
|
anchors.fill: parent
|
|
|
|
scale: Math.max(
|
|
|
|
1.6, Math.ceil(parent.parent.width / parent.parent.height)
|
|
|
|
)
|
|
|
|
rotation: 45 * 3
|
|
|
|
gradient: Gradient {
|
|
|
|
GradientStop { position: 0.0; color: Qt.hsla(0.73, 0.25, 0.25, 1) }
|
|
|
|
GradientStop { position: 1.0; color: Qt.hsla(0.52, 1, 0.08, 1) }
|
|
|
|
}
|
|
|
|
}
|
2019-06-27 16:31:03 +10:00
|
|
|
|
2019-07-21 21:14:16 +10:00
|
|
|
HBusyIndicator {
|
2019-06-27 16:31:03 +10:00
|
|
|
anchors.centerIn: parent
|
2019-08-28 09:47:58 +10:00
|
|
|
width: Math.min(160, parent.width - 16, parent.height - 16)
|
|
|
|
height: width
|
2019-06-27 16:31:03 +10:00
|
|
|
}
|
|
|
|
}
|