X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=homescreen%2Fqml%2Fbackground.qml;fp=homescreen%2Fqml%2Fbackground.qml;h=c2bb309321db2d428b647e8568530337eff94e8b;hb=9f1edc7b8e5ba92c14fb54ab6bab3596ec080dd4;hp=0000000000000000000000000000000000000000;hpb=866cae834b24aec99b8cf30d538681b1c5567a77;p=apps%2Fhomescreen.git 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' + } +}