From b6173d20ad023f11fa6024df4a5da0b433f63b4c Mon Sep 17 00:00:00 2001 From: dankito Date: Thu, 3 Sep 2020 13:23:26 +0200 Subject: [PATCH] Displaying now only bank name instead of also bank code and city (user knows bank code and city at the place already) --- .../BankingiOSApp/ui/views/AddAccountDialog.swift | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ui/BankingiOSApp/BankingiOSApp/ui/views/AddAccountDialog.swift b/ui/BankingiOSApp/BankingiOSApp/ui/views/AddAccountDialog.swift index 84c6b5e8..597438be 100644 --- a/ui/BankingiOSApp/BankingiOSApp/ui/views/AddAccountDialog.swift +++ b/ui/BankingiOSApp/BankingiOSApp/ui/views/AddAccountDialog.swift @@ -25,15 +25,16 @@ struct AddAccountDialog: View { NavigationLink(destination: SelectBankDialog($bank)) { if bank != nil { bank.map { bank in - BankInfoListItem(bank) + Text(bank.name) + .font(.headline) } } else { Text("Select your bank ...") .detailForegroundColor() - .frame(height: 50) } } + .frame(height: 30) } Section(header: Text("Online banking login data")) {