Hello everyone,
Do you know how can I animate a Rectangle color property in QML when a C++ binding has been modified?
my qml part look like this :
Rectangle
{
id : power_cons_tile
// I want to animate the color when the new color is used
color : model.power_cons < 100 ? "#008A00" : "#E51400"
height: 85
width : 175
smooth: true
...
↧