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 } }