~renatofilho/telephony-service/fix-phone-number-field-cursor

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import QtQuick 1.1

Item {
    width: 62
    height: 52

    property alias label: labelItem.text
    
    Rectangle {
        anchors.fill: parent
        border.color: "#e0e0e0"
        border.width: 1
        color: "#8d8d8d"
    }

    Text {
        id: labelItem
        anchors.centerIn: parent
    }
}