QML animations visible property changes
问题 I want an animation to be painted when an element becomes visible (is should appear smoothly, not the whole at all) I tried this states: State { name: "iconOff" when: iconOnSwitch.checked == false PropertyChanges { target: selectIconRow; visible: false } } transitions: Transition { reversible: true from: "" to: "iconOff" PropertyAnimation { properties: "x,y,visible" easing.type: Easing.InOutQuad from: selectIconRow property: "visible" } } But the selectIconRow still appears immediately How