Implement search
This commit is contained in:
@@ -4,11 +4,23 @@ import QtQuick.Layouts
|
||||
|
||||
|
||||
TextField {
|
||||
id: field
|
||||
|
||||
signal submitted(query: string)
|
||||
|
||||
Layout.preferredWidth: 300
|
||||
placeholderText: qsTr("Suche")
|
||||
|
||||
Keys.onReturnPressed: {
|
||||
field.submitted(field.text);
|
||||
}
|
||||
|
||||
Button {
|
||||
icon.source: "qrc:/images/MagnifyingGlass.svg"
|
||||
isFieldButton: true
|
||||
|
||||
onClicked: {
|
||||
field.submitted(field.text)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user