Moving qml Item out of left side of window
问题 I want to move a qml Item out of the left side of the app window. While this task works perfectly for the right side of the window by defining a state like this states: State { name: "hidden" when: is_hidden == true AnchorChanges { target: right_item_to_move anchors.right: undefined } PropertyChanges { target: right_item_to_move x: main_window.width } } and defining the appropriate Transition, I can't get it to work on the left side of the main window because negative x coordinates are not