aboutsummaryrefslogtreecommitdiffstats
path: root/HomeScreenNG/qml/TopArea.qml
blob: 8de8a8d3c3ecfdd7a4ff8cc7d32cee70312d2e0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
        }
    }
}