Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Is there any way of loading QML files without using the QResource system?
For example, rather than doing this engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
do something like engine.load(QUrl("./qml/main.qml");
Hi,
You should rather use QUrl::fromLocalFile("./qml/main.qml"). In that case don't forget to ensure that the file is at the right place