looking for education/guidance/training
-
I do not have clear in my mind some interrelated parts of the Qt/QML ecosystem. As a result, every time I try to do something new, or make a change, I lose quite a bit of time. I'm trying to understand how each of these things work, when and why I need to use them, and how they are related:
- project.pro QML_IMPORT_PATH and QML_DESIGNER_IMPORT_PATH
- QQmlApplicationEngine::addImportPath()
- .qrc file(s)
- qmldir
Where can I find good resources for this information? A youtube channel? Certification courses?
Thanks.
-
@alpartis said in looking for education/guidance/training:
As a result, every time I try to do something new, or make a change, I lose quite a bit of time.
but thats the best way to learn things ;)
(i mean it)Where can I find good resources for this information?
best source is always the Qt docs itself.
Depending on your basic knowledge a book might also help to get a clear overview.- QML_IMPORT_PATH - Additional import path used to resolve QML modules in Qt Creator's code model
- QML_DESIGNER_IMPORT_PATH - Additional import path used to resolve QML modules just for Qt Quick Designer
- QQmlApplicationEngine::addImportPath() - https://doc.qt.io/qt-5/qtqml-syntax-imports.html#qml-import-path
- .qrc file(s) - https://doc.qt.io/qt-5/resources.html
- qmldir - https://doc.qt.io/qt-5/qtqml-modules-qmldir.html
-
This post is deleted!