WIP: add Qt Quick HomeScreen UI
[staging/HomeScreen.git] / HomeScreenNG / qml / TopArea.qml
diff --git a/HomeScreenNG/qml/TopArea.qml b/HomeScreenNG/qml/TopArea.qml
new file mode 100644 (file)
index 0000000..8de8a8d
--- /dev/null
@@ -0,0 +1,26 @@
+import QtQuick 2.7
+import QtQuick.Layouts 1.1
+
+Image {
+    width: 1920
+    height: 218
+    source: './images/TopSection_NoText_NoIcons-01.png'
+    fillMode: Image.PreserveAspectCrop
+
+    RowLayout {
+        anchors.fill: parent
+        spacing: 0
+        ShortcutArea {
+            id: shortcutArea
+            Layout.fillWidth: true
+            Layout.fillHeight: true
+            Layout.preferredWidth: 785
+        }
+        StatusArea {
+            id: statusArea
+            Layout.fillWidth: true
+            Layout.fillHeight: true
+            Layout.preferredWidth: 295
+        }
+    }
+}