-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.8.4, 6.10.0 Beta4
-
None
Looks like it is exposed as a basic QObject and documented as a "variant": https://doc.qt.io/Qt-6/qml-qtquick-window.html#screen-prop
Code
import QtQuick Window { id: root width: 0.5*root.screen.width // Warning: Member "width" not found on type "QObject" [missing-property] height: 0.5*root.screen.height // Warning: Member "hright" not found on type "QObject" [missing-property] visible: true }