searchbar

This commit is contained in:
2024-11-06 12:18:20 +01:00
parent 9b30f5e127
commit a8bb0623cc
6 changed files with 65 additions and 3 deletions

View File

@@ -1,5 +1,42 @@
import QtQuick
import QtQuick.Controls
Item
{
TextField
{
id: searchBar
placeholderText: qsTr("Suche")
leftPadding: 3
rightPadding: 3
width: 300
Button
{
icon.source: "../images/search.svg"
icon.color: "olive"
anchors.right: parent.right
height: parent.height
flat: true
}
}
Button
{
icon.source: "../images/filter.svg"
icon.color: "olive"
anchors.left: searchBar.right
height: searchBar.height
flat: true
}
Item {
}