2014-07-07 20:08:30 +03:00
|
|
|
import QtQuick 2.0
|
|
|
|
|
|
|
|
Item {
|
|
|
|
property alias placeholderText: input.placeholderText
|
|
|
|
property alias text: input.text
|
|
|
|
height: 37
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
anchors.fill: parent
|
|
|
|
anchors.bottomMargin: 1
|
|
|
|
color: "#DBDBDB"
|
2014-07-17 14:14:27 +03:00
|
|
|
//radius: 4
|
2014-07-07 20:08:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
anchors.fill: parent
|
|
|
|
anchors.topMargin: 1
|
|
|
|
color: "#FFFFFF"
|
2014-07-17 14:14:27 +03:00
|
|
|
//radius: 4
|
2014-07-07 20:08:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Input {
|
|
|
|
id: input
|
|
|
|
anchors.fill: parent
|
2014-07-09 17:18:48 +03:00
|
|
|
anchors.leftMargin: 4
|
|
|
|
anchors.rightMargin: 4
|
2014-07-07 20:08:30 +03:00
|
|
|
}
|
|
|
|
}
|