aboutsummaryrefslogtreecommitdiffstats
path: root/homescreen/qml/background_demo.qml
diff options
context:
space:
mode:
Diffstat (limited to 'homescreen/qml/background_demo.qml')
-rw-r--r--homescreen/qml/background_demo.qml11
1 files changed, 11 insertions, 0 deletions
diff --git a/homescreen/qml/background_demo.qml b/homescreen/qml/background_demo.qml
new file mode 100644
index 0000000..e3a99a1
--- /dev/null
+++ b/homescreen/qml/background_demo.qml
@@ -0,0 +1,11 @@
+import QtQuick 2.13
+import QtQuick.Window 2.13
+
+Window {
+ id: background
+ width: Screen.width
+ height: Screen.height
+ flags: Qt.FramelessWindowHint
+ visible: true
+ color: 'red'
+}