inputMethodHints: Qt.ImhFormattedNumbersOnly
| The Following User Says Thank You to rob_kouw For This Useful Post: | ||
inputMethodHints: Qt.ImhFormattedNumbersOnly
| The Following User Says Thank You to coderus For This Useful Post: | ||
| The Following User Says Thank You to Markkyboy For This Useful Post: | ||
Image {
id: icon
source: "http://openweathermap.org/img/wn/" + label.text + "@2x.png"
anchors.horizontalCenter: parent.horizontalCenter
}
Label {
id: label
text: {
(wDataCntr.weatherData)
? String(wDataCntr.weatherData.weather[0].icon)
: ""
}
visible: false
}
}
| The Following User Says Thank You to Markkyboy For This Useful Post: | ||
| The Following User Says Thank You to Markkyboy For This Useful Post: | ||
enabled: label.text
| The Following User Says Thank You to coderus For This Useful Post: | ||
enabled: label.text
| The Following User Says Thank You to Markkyboy For This Useful Post: | ||
| The Following User Says Thank You to levone1 For This Useful Post: | ||