aboutsummaryrefslogtreecommitdiffstats
path: root/HomeScreenNG/qml/TopArea.qml
diff options
context:
space:
mode:
Diffstat (limited to 'HomeScreenNG/qml/TopArea.qml')
-rw-r--r--HomeScreenNG/qml/TopArea.qml26
1 files changed, 26 insertions, 0 deletions
diff --git a/HomeScreenNG/qml/TopArea.qml b/HomeScreenNG/qml/TopArea.qml
new file mode 100644
index 0000000..8de8a8d
--- /dev/null
+++ b/HomeScreenNG/qml/TopArea.qml
@@ -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
+ }
+ }
+}