From 05e8b1f4a49c728b6fd66e530c9452d98690131b Mon Sep 17 00:00:00 2001 From: dankito Date: Sat, 8 Aug 2020 18:06:17 +0200 Subject: [PATCH] Fixed that if no account has been added only center part got displayed with systemGroupedBackground, framed by large white borders --- ui/BankingiOSApp/BankingiOSApp/ui/views/AccountsTab.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/BankingiOSApp/BankingiOSApp/ui/views/AccountsTab.swift b/ui/BankingiOSApp/BankingiOSApp/ui/views/AccountsTab.swift index 88297edc..91c162ce 100644 --- a/ui/BankingiOSApp/BankingiOSApp/ui/views/AccountsTab.swift +++ b/ui/BankingiOSApp/BankingiOSApp/ui/views/AccountsTab.swift @@ -30,9 +30,10 @@ struct AccountsTab: View { Spacer() } + .frame(width: UIScreen.main.bounds.width) .background(Color(UIColor.systemGroupedBackground)) } - + }