Implemented showing how much of the allowed 140 characters have already been entered (but not checking the value yet)

This commit is contained in:
dankito 2024-09-06 17:36:27 +02:00
parent d1af907786
commit 0f1acdc519
1 changed files with 8 additions and 0 deletions

View File

@ -225,6 +225,14 @@ fun TransferMoneyDialog(
}
}
Row(Modifier.fillMaxWidth().padding(top = 4.dp), horizontalArrangement = Arrangement.End) {
Text(
text = "${paymentReference.length} / 140",
style = MaterialTheme.typography.caption
)
}
Row(Modifier.padding(top = verticalSpace), verticalAlignment = Alignment.CenterVertically) {
Switch(
checked = instantTransfer,