X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=homescreen%2Fqml%2FTopArea.qml;h=2a75cf852bc69613f111cdcfb0cc66ebe2802be3;hb=86c947e1adde60ee372a5ee6031068d42bcfaa65;hp=922742ddea693aa324570029dce893d9e556d743;hpb=0592a405aa68f3baf6773795efa5522e4ee16779;p=apps%2Fhomescreen.git diff --git a/homescreen/qml/TopArea.qml b/homescreen/qml/TopArea.qml index 922742d..2a75cf8 100644 --- a/homescreen/qml/TopArea.qml +++ b/homescreen/qml/TopArea.qml @@ -17,11 +17,12 @@ import QtQuick 2.2 import QtQuick.Layouts 1.1 +import QtQuick.Controls 2.0 Image { width: 1920 height: 218 - source: './images/TopSection_NoText_NoIcons-01.png' + source: './images/TopSection_NoText_NoIcons-01.svg' fillMode: Image.PreserveAspectCrop RowLayout { @@ -40,4 +41,19 @@ Image { Layout.preferredWidth: 295 } } + + Timer { + id: launching + interval: 500 + running: launcher.launching + } + + ProgressBar { + id: progressBar + anchors.verticalCenter: parent.bottom + anchors.left: parent.left + anchors.right: parent.right + indeterminate: visible + visible: launcher.launching && !launching.running + } }