nosignal-shell/modules/nexus/NavPane.qml
2026-06-04 16:27:04 +10:00

26 lines
489 B
QML

import "navpane"
import QtQuick
import QtQuick.Layouts
import Caelestia.Config
import qs.modules.nexus
ColumnLayout {
id: root
required property NexusState nState
spacing: Tokens.spacing.large
SearchBar {
Layout.fillWidth: true
nState: root.nState
}
NavLocations {
Layout.fillWidth: true
Layout.fillHeight: true
Layout.topMargin: -topMargin
Layout.bottomMargin: -bottomMargin
nState: root.nState
}
}