aboutsummaryrefslogtreecommitdiffstats
path: root/homescreen/qml/bottompanel_demo.qml
diff options
context:
space:
mode:
Diffstat (limited to 'homescreen/qml/bottompanel_demo.qml')
-rw-r--r--homescreen/qml/bottompanel_demo.qml12
1 files changed, 12 insertions, 0 deletions
diff --git a/homescreen/qml/bottompanel_demo.qml b/homescreen/qml/bottompanel_demo.qml
new file mode 100644
index 0000000..27c00df
--- /dev/null
+++ b/homescreen/qml/bottompanel_demo.qml
@@ -0,0 +1,12 @@
+import QtQuick 2.2
+import QtQuick.Window 2.11
+import QtQuick.Layouts 1.1
+
+Window {
+ visible: true
+ flags: Qt.FramelessWindowHint
+ width: Screen.width
+ height: 216
+ title: 'HomeScreen bottom'
+ color: 'green'
+}