Updated on 2026-08-14

This commit is contained in:
Tangem 2025-12-16 16:26:46 +05:00
parent 9ea256e557
commit 7e02e72a40
5 changed files with 38 additions and 8 deletions

View file

@ -39,8 +39,8 @@ fun PinTextField(
pinTextColor: PinTextColor,
onValueChange: (String) -> Unit,
modifier: Modifier = Modifier,
focusRequester: FocusRequester = remember { FocusRequester() },
) {
val focusRequester = remember { FocusRequester() }
val textFieldValue = remember(value) {
TextFieldValue(value, selection = TextRange(value.length))
}