Files
z-bar-qt/Modules/SettingsNew/NavPane.qml
T
zach ea4d5376f6
Lint & Format (JS/TS) / lint-format (pull_request) Successful in 15s
Python / lint-format (pull_request) Successful in 29s
Python / test (pull_request) Successful in 54s
Lint & Format (Rust) / lint-format (pull_request) Successful in 1m34s
initial commit for settings revamp
2026-06-23 16:22:56 +02:00

26 lines
423 B
QML

import QtQuick
import QtQuick.Layouts
import qs.Modules.SettingsNew.NavPane
import qs.Config
ColumnLayout {
id: root
required property SettingsState sState
spacing: Appearance.spacing.large
SearchBar {
Layout.fillWidth: true
sState: root.sState
}
NavLocations {
Layout.bottomMargin: -bottomMargin
Layout.fillHeight: true
Layout.fillWidth: true
Layout.topMargin: -topMargin
sState: root.sState
}
}