nosignal-shell/modules/nexus/PageCompRegistry.qml
2026-06-07 01:20:34 +10:00

49 lines
1 KiB
QML

pragma Singleton
import QtQuick
import qs.modules.nexus.common
import qs.modules.nexus.pages
import qs.modules.nexus.pages.wallandstyle
QtObject {
id: root
readonly property list<Component> pageComps: [
// Appearance
Component {
// Wallpaper & style
StackPage {
Component {
WallpaperAndStyle {}
}
Component {
WallpaperSelect {}
}
Component {
WallpaperCategory {}
}
Component {
ColourSelect {}
}
}
},
// Connectivity
Component {
// Network
StackPage {
Component {
NetworkPage {}
}
}
},
Component {
// Bluetooth
StackPage {
Component {
BluetoothPage {}
}
}
}
]
}