WIP: add Qt Quick HomeScreen UI
[staging/HomeScreen.git] / HomeScreenNG / qml / TopArea.qml
1 import QtQuick 2.7
2 import QtQuick.Layouts 1.1
3
4 Image {
5     width: 1920
6     height: 218
7     source: './images/TopSection_NoText_NoIcons-01.png'
8     fillMode: Image.PreserveAspectCrop
9
10     RowLayout {
11         anchors.fill: parent
12         spacing: 0
13         ShortcutArea {
14             id: shortcutArea
15             Layout.fillWidth: true
16             Layout.fillHeight: true
17             Layout.preferredWidth: 785
18         }
19         StatusArea {
20             id: statusArea
21             Layout.fillWidth: true
22             Layout.fillHeight: true
23             Layout.preferredWidth: 295
24         }
25     }
26 }