You instantiated an attached property in an object of the wrong type.
The attached property will not work.
import QtQuick
Item {
QtObject {
LayoutMirroring.enabled: true
}
}To fix this warning, change the enclosing type to inherit from the type mentioned in the warning message:
import QtQuick
Item {
Item {
LayoutMirroring.enabled: true
}
}
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.9/qmllint-warnings-and-errors-quick-attached-property-type.html