waffles: action center: volume menu

This commit is contained in:
end-4
2025-11-19 23:39:18 +01:00
parent bca177eed2
commit 5c8d824749
42 changed files with 680 additions and 129 deletions
@@ -9,4 +9,17 @@ Singleton {
property StackView stackView
function push(component) {
if (stackView) {
item = stackView.push(component)
stackView.implicitWidth = item.implicitWidth
stackView.implicitHeight = item.implicitHeight
}
}
function back() {
if (stackView && stackView.depth > 1) {
stackView.pop()
}
}
}