Hi,
I need to print a number in qml in this way (with three digits), for example
3 -> 003
10 -> 010
etc…
How I can do this in qml, with this code?
property int val: 10
Text {
text: val
}
↧