I am trying to import my singleton module but keep getting module "Style" is not installed
This is my project structure
Style.qml
pragma Singleton
import QtQuick 2.0
QtObject {
property color subsectionlabelColor: "white"
property color appSectionTitleColor: "white"
}
qmldir
singleton Style 1.0 Style.qml
Main.qml
import QtQuick 2.9
import QtQuick.Window 2.2
import QtQuick.Controls 2.3
import Style 1.0
Window {
I wanted to keep the Style.qml outside of the qrc file so it can be changed more easily.
Please can someone explain what is going on?
Thanks
