You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
wow-app/components/LineEdit.qml

31 lines
590 B

10 years ago
import QtQuick 2.0
Item {
property alias placeholderText: input.placeholderText
property alias text: input.text
property int fontSize: 18
10 years ago
height: 37
Rectangle {
anchors.fill: parent
anchors.bottomMargin: 1
color: "#DBDBDB"
//radius: 4
10 years ago
}
Rectangle {
anchors.fill: parent
anchors.topMargin: 1
color: "#FFFFFF"
//radius: 4
10 years ago
}
Input {
id: input
anchors.fill: parent
anchors.leftMargin: 4
anchors.rightMargin: 4
font.pixelSize: parent.fontSize
10 years ago
}
}