I have the following input panel :
InputPanel{
id: inputPanel
visible: false
y : window.height/2
width: window.width
height: window.height/2
transitions: Transition {
NumberAnimation {
target: inputPanel
property: "height"
duration: 500
easing.type: Easing.InOutQuad
}
}
}
But that NumberAnimation has no effect, so are SmoothedAnimation , PathAnimation and SequentialAnimation.
I use Qt 5.14
Any help is appreciated.