Add qml/FallbackBoot.qml

This commit is contained in:
milonekrone 2026-01-14 16:04:23 +01:00
parent 83f0707753
commit 72b536fc50

22
qml/FallbackBoot.qml Normal file
View File

@ -0,0 +1,22 @@
import QtQuick
Item {
signal finished()
Rectangle { anchors.fill: parent; color: "#050a14" }
Text {
anchors.centerIn: parent
text: "XMB"
color: "white"
font.pixelSize: 56
opacity: 0.0
SequentialAnimation on opacity {
running: true
NumberAnimation { to: 1.0; duration: 700 }
PauseAnimation { duration: 700 }
NumberAnimation { to: 0.0; duration: 500 }
onFinished: finished()
}
}
}