Updated on 2026-08-14

This commit is contained in:
Tangem 2023-12-06 15:28:07 +03:00
parent 1bd432de87
commit f14216de94

View file

@ -262,14 +262,12 @@ private fun Content(
}
}
is TransactionCardType.SendCard -> {
AnimatedContent(targetState = textFieldValue, label = "") {
AutoSizeTextField(
modifier = sumTextModifier,
textFieldValue = it ?: TextFieldValue(),
onAmountChange = { type.onAmountChanged(it) },
onFocusChange = type.onFocusChanged,
)
}
AutoSizeTextField(
modifier = sumTextModifier,
textFieldValue = textFieldValue ?: TextFieldValue(),
onAmountChange = { type.onAmountChanged(it) },
onFocusChange = type.onFocusChanged,
)
}
}