I forgot to mentioned this ,I am Using TextInputUnit as component ,
here is the TextInputUnit.qml , i have added the Font.AllUppercase
TextInput {
id: textInput
text: value
focus: true
anchors.top: parent.top
anchors.left: parent.left
anchors.bottom: parent.bottom
anchors.leftMargin: 10
anchors.right: unitsRect.left
verticalAlignment: Text.AlignVCenter
color: '#EBF4FF'
font.family: 'Lato'
font.pixelSize: 16
font.capitalization: Font.AllUppercase
// validator: validatorIn
onEditingFinished: {
root.textChanged()
}
readOnly: readonly
}
but still its not working . What will be the issue