有人可以告诉我如何设置增加按钮高度的动画效果吗? 我可以通过点击另一个按钮来增加按钮的高度
Page {
Container {
Button {
id: btn2
text: "button2"
onClicked: {
btn1.maxHeight = 500
btn1.minHeight = 500
}
}
ImageButton {
id: btn1
defaultImageSource: "asset:///image.png"
}
}
}
但是如何设置高度增加的按钮动画?
由于