From 2c195bbe37be5774066473de80b45c9bd89d485d Mon Sep 17 00:00:00 2001 From: Marius Vlad Date: Sat, 25 Apr 2020 18:42:40 +0300 Subject: agl-compositor: Conversion to agl-compositor Signed-off-by: Marius Vlad Change-Id: I7da44ec333217d355ba643d2d21bea7d8940ad2b --- homescreen/qml/background.qml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 homescreen/qml/background.qml (limited to 'homescreen/qml/background.qml') diff --git a/homescreen/qml/background.qml b/homescreen/qml/background.qml new file mode 100644 index 0000000..c2bb309 --- /dev/null +++ b/homescreen/qml/background.qml @@ -0,0 +1,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' + } +} -- cgit 1.2.3-korg