mirror of
https://github.com/QRouland/UTPass.git
synced 2024-11-14 11:32:39 +00:00
13 lines
250 B
QML
13 lines
250 B
QML
|
import QtQuick 2.4
|
||
|
|
||
|
Item {
|
||
|
TextField {
|
||
|
id: searchBar
|
||
|
placeholderText: i18n.tr("Search")
|
||
|
height: units.gu(4)
|
||
|
visible: false
|
||
|
anchors.verticalCenter: parent.verticalCenter
|
||
|
}
|
||
|
Component.onCompleted: ;
|
||
|
}
|