This commit is contained in:
Zacharias-Brohn
2026-03-14 17:29:24 +01:00
parent 8bc7826f26
commit f7b7260780
14 changed files with 635 additions and 77 deletions
+12 -5
View File
@@ -23,13 +23,14 @@ Item {
Connections {
function onCurrentCategoryChanged() {
stack.pop();
if (currentCategory === "general") {
if (currentCategory === "general")
stack.push(general);
} else if (currentCategory === "wallpaper") {
else if (currentCategory === "wallpaper")
stack.push(background);
} else if (currentCategory === "appearance") {
else if (currentCategory === "appearance")
stack.push(appearance);
}
else if (currentCategory === "lockscreen")
stack.push(lockscreen);
}
target: root
@@ -48,7 +49,6 @@ Item {
anchors.bottom: parent.bottom
anchors.left: parent.left
anchors.top: parent.top
implicitHeight: layout.implicitHeight
implicitWidth: layout.implicitWidth
Categories {
@@ -100,4 +100,11 @@ Item {
Cat.Appearance {
}
}
Component {
id: lockscreen
Cat.Lockscreen {
}
}
}