aboutsummaryrefslogtreecommitdiffstats
path: root/homescreen/qml/background.qml
blob: c2bb309321db2d428b647e8568530337eff94e8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.13
import QtQuick.Window 2.13

Window {
    id: background
    width: Screen.width
    height: Screen.height
    flags: Qt.FramelessWindowHint
    visible: true

    Image {
        anchors.fill: parent
        source: './images/AGL_HMI_Blue_Background_NoCar-01.png'
    }
}