SearchField QML Type

This is a standard textfield following KDE HIG. Using Ctrl+F as focus sequence and "Search…" as placeholder text. More...

Import Statement: import org.kde.plasma.extras
Inherits:

ActionTextField

Detailed Description

Example usage for the search field component:

 import org.kde.plasma.extras as PlasmaExtras

 PlasmaExtras.SearchField {
     id: searchField
     onAccepted: console.log("Search text is " + searchField.text)
 }