<Get the value from VisualTransformation Jetpack C...
# stackoverflow
r
Get the value from VisualTransformation Jetpack Compose TextField How can I get the transformed value from VisualTransformation in Jetpack compose TextField? since the only thing that is changing is the visual text not the actual input/buffered text? class CurrencyAmountInputVisualTransformation( private val currencySymbol: String, private val unbufferedValueChange: (String) -> Unit ) : VisualTransformation { private val symbols = DecimalFormat().decimalFormatSymbols private val numberOfDecimals: Int = 2 override fun filter(text:...