Force caps on sync code text field

This commit is contained in:
CrissZollo 2026-02-15 14:13:13 +01:00
parent 83cb8987d4
commit d593ec0f29
No known key found for this signature in database

View file

@ -132,7 +132,7 @@ fun SyncCodeClaimScreen(
Spacer(modifier = Modifier.height(4.dp))
InputField(
value = code,
onValueChange = { code = it },
onValueChange = { code = it.uppercase() },
placeholder = "XXXX-XXXX-XXXX-XXXX-XXXX",
keyboardType = KeyboardType.Text,
imeAction = ImeAction.Next,