aboutsummaryrefslogtreecommitdiffstats
path: root/homescreen/qml/bottompanel.qml
diff options
context:
space:
mode:
Diffstat (limited to 'homescreen/qml/bottompanel.qml')
-rw-r--r--homescreen/qml/bottompanel.qml14
1 files changed, 14 insertions, 0 deletions
diff --git a/homescreen/qml/bottompanel.qml b/homescreen/qml/bottompanel.qml
new file mode 100644
index 0000000..a859418
--- /dev/null
+++ b/homescreen/qml/bottompanel.qml
@@ -0,0 +1,14 @@
+import QtQuick 2.13
+import QtQuick.Window 2.13
+import QtQuick.Controls 2.13
+
+Window {
+ id: bottompanel
+ width: Screen.width
+ height: Screen.height * (215.0 / 1920.0)
+ flags: Qt.FramelessWindowHint
+ visible: true
+ //color: "#aaaa0000"
+ MediaArea {
+ }
+}