agl-compositor: Conversion to agl-compositor
[apps/homescreen.git] / homescreen / qml / background.qml
1 import QtQuick 2.13
2 import QtQuick.Window 2.13
3
4 Window {
5     id: background
6     width: Screen.width
7     height: Screen.height
8     flags: Qt.FramelessWindowHint
9     visible: true
10
11     Image {
12         anchors.fill: parent
13         source: './images/AGL_HMI_Blue_Background_NoCar-01.png'
14     }
15 }