43 lines
643 B
QML
43 lines
643 B
QML
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
|
|
|
|
}
|
|
|
|
|
|
}
|