26 lines
489 B
QML
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
|
|
}
|
|
}
|