Fix Offers View

This commit is contained in:
Yuri Becker
2025-03-24 11:41:07 +01:00
parent 41ecdb658c
commit 30493dbdbf
2 changed files with 14 additions and 8 deletions

View File

@@ -6,12 +6,13 @@ import Qt.labs.qmlmodels
Item
{
anchors.fill: parent
StackView
{
id: employeesStack
id: offersStack
anchors.fill: parent
initialItem: "OffersTable.qml"
anchors.margins: 9
}
}

View File

@@ -3,13 +3,18 @@ import QtQuick.Layouts
import QtQuick.Controls
import Qt.labs.qmlmodels
Item
{
ColumnLayout {
property var availableFilters: []
SearchBar
{
id:searchBar
anchors.margins: 9
Layout.fillWidth: true
anchors.fill: parent
RowLayout {
spacing: Dimensions.l
SearchBar {
}
}
Item {
Layout.fillHeight: true
}
}