Any ideas on how I can migrate this to compose. I'm using AndroidView for amountInput (CurrencyEditText, third party). asset is livedata and I observe it with observeAsState() like normally.
Copy code
Inside fragment::
transferWithdrawViewModel.asset.observe {
amountInput.setMaxNumberOfDecimalDigits(it.precision.toInt()) **this line
}