chore: add weather icon

This commit is contained in:
Nydragon 2024-11-25 18:34:49 +01:00
parent 2118e6d73e
commit 01fdc09393
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
3 changed files with 10 additions and 3 deletions
src
provider
widgets

View file

@ -43,7 +43,10 @@ Singleton {
return day ? "weather-few-clouds" : "weather-few-clouds-night";
case "122":
return "weather-overcast";
case "296":
return day ? "weather-showers-scattered" : "weather-showers-scattered-night";
default:
console.log("Unknown weather code: ", weatherCode);
return "weather-none-available";
}
}

View file

@ -95,11 +95,13 @@ MouseArea {
elide: Text.ElideRight
font.pointSize: 12.5
Component.onCompleted: () => {
onImplicitHeightChanged: {
if (text.implicitHeight < bodyBox.height) {
bodyBox.height = text.implicitHeight;
}
}
Component.onCompleted: () => {
bodyBox.maxHeight = Qt.binding(() => text.implicitHeight);
}
}

View file

@ -38,7 +38,7 @@ BRectangle {
}
GridLayout {
Layout.margins: 10
Repeater {
model: Weather.lastFetch?.weather
@ -50,9 +50,11 @@ BRectangle {
property string maxtempC: modelData.maxtempC
property string date: modelData.date
color: "#D7B4F3"
radius: 5
Layout.fillWidth: true
Layout.fillHeight: true
Layout.margins: 5
ColumnLayout {
anchors.fill: parent