what’s the way to limit no. of characters in `Text...
# compose
j
what’s the way to limit no. of characters in
Text()
composable?
d
check it in
onValueChange
callback
j
I was talking about
Text()
not
TextField()
a
The same way you limit the number of characters in a
println
❤️ 4
n
Text(text = myText.take(numberOfMaxCharacter) ... )
j
cool, thank you
133 Views