Updated on 2026-08-14
This commit is contained in:
parent
1bd432de87
commit
f14216de94
1 changed files with 6 additions and 8 deletions
|
|
@ -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,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue