Invalid property name "title"
-
Hi,
QML is not a compiled language like C++ (this has changed a bit, see this article about the Qt Quick compiler old and new) hence the absence of compilation error.
As for the warning you are getting, it is correct the ApplicationWindow type does not have a title property directly but it has through inheritance from Window. So it's likely a glitch from the code model.