21 lines
328 B
QML
21 lines
328 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls
|
|
import Qt.labs.qmlmodels
|
|
|
|
ColumnLayout {
|
|
property var availableFilters: []
|
|
|
|
Layout.fillWidth: true
|
|
anchors.fill: parent
|
|
|
|
RowLayout {
|
|
spacing: Dimensions.l
|
|
SearchBar {
|
|
}
|
|
}
|
|
Item {
|
|
Layout.fillHeight: true
|
|
}
|
|
}
|