From 72b536fc50a260b0beacde38e3297a95b8cc0cc7 Mon Sep 17 00:00:00 2001 From: milonekrone Date: Wed, 14 Jan 2026 16:04:23 +0100 Subject: [PATCH] Add qml/FallbackBoot.qml --- qml/FallbackBoot.qml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 qml/FallbackBoot.qml diff --git a/qml/FallbackBoot.qml b/qml/FallbackBoot.qml new file mode 100644 index 0000000..0d164ff --- /dev/null +++ b/qml/FallbackBoot.qml @@ -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() + } + } +}