I am currently developing a highly scalable application using QML. One major issue I'm facing is how to manage screen transitions. For instance, the animation of this element is designed for a 1920x1080 resolution:
EventLog{
id: eventlog
x: 0
y: 1000
z: 10
NumberAnimation{id: showeventPanel; target: eventlog; properties: "y"; to: 710; duration: 500}
}
However, anchoring this element would prevent the animation from functioning properly. As a result, the element's position will be incorrect on screens with other resolutions. While setting anchors to undefined is an option, how can I accurately adjust the x and y coordinates to ensure the element appears correctly on the screen?