X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=HomeScreen%2Fqml%2FStatusArea.qml;h=5f4e1cb9acb818ee55ee1ac3d0c1af876d3ad8bf;hb=f22932f9680b90e33b4ce38bd2f4223fe442681a;hp=4ed969d10fa2c5178306471dbef13df96659d59f;hpb=79714c0aa8fc461d77b75d6c5dae6a1a7d726954;p=staging%2FHomeScreen.git diff --git a/HomeScreen/qml/StatusArea.qml b/HomeScreen/qml/StatusArea.qml index 4ed969d..5f4e1cb 100644 --- a/HomeScreen/qml/StatusArea.qml +++ b/HomeScreen/qml/StatusArea.qml @@ -42,7 +42,7 @@ Item { anchors.fill: parent anchors.margins: 40 spacing: 0 - Label { + Text { Layout.fillWidth: true Layout.fillHeight: true text: Qt.formatDate(now, 'dddd').toUpperCase() @@ -59,7 +59,7 @@ Item { // z: -1 // } } - Label { + Text { Layout.fillWidth: true Layout.fillHeight: true text: Qt.formatTime(now, 'h:mm ap').toUpperCase() @@ -76,7 +76,7 @@ Item { Image { source: './images/Weather/WeatherIcons_Rain-01.png' } - Label { + Text { text: '64°F' color: 'white' font.family: 'Helvetica' @@ -94,6 +94,8 @@ Item { Repeater { model: StatusBarModel {} delegate: Image { + Layout.preferredWidth: 77 + Layout.preferredHeight: 73 source: model.modelData fillMode: Image.PreserveAspectFit }