Only showing account selection box if there are any SEPA accounts

This commit is contained in:
dankito 2024-10-04 01:26:10 +02:00
parent c89220bc0c
commit 5d00bbf77e
1 changed files with 25 additions and 23 deletions

View File

@ -101,6 +101,7 @@ fun CreateEpcQrCodeScreen(onClosed: () -> Unit) {
}
if (accountsWithIban.size > 1) {
Select(
"Für Konto",
accountsWithIban,
@ -127,6 +128,7 @@ fun CreateEpcQrCodeScreen(onClosed: () -> Unit) {
},
modifier = Modifier.fillMaxWidth().padding(top = 16.dp, bottom = 8.dp)
)
}
OutlinedTextField(
label = { Text("Empfänger*in") },