シーケンシャルアニメーションでウィジェットをコンテナの中央に移動したいのですが、機能しません。
SequentialAnimation {
PauseAnimation { duration: 1000 }
AnchorAnimation {
duration: 1000
// ERROR: Cannot assign to non-existent default property
AnchorChanges {
target: widget1
anchors.horizontalCenter: container.horizontalCenter
}
}
....
ない:
SequentialAnimation {
PauseAnimation { duration: 1000 }
// ERROR: Cannot assign object to list
AnchorChanges {
target: widget1
anchors.horizontalCenter: container.horizontalCenter
}
AnchorAnimation {
duration: 1000
}
....