diff --git a/ui/BankingiOSApp/BankingiOSApp/ui/views/AccountsTab.swift b/ui/BankingiOSApp/BankingiOSApp/ui/views/AccountsTab.swift index 016231f7..88297edc 100644 --- a/ui/BankingiOSApp/BankingiOSApp/ui/views/AccountsTab.swift +++ b/ui/BankingiOSApp/BankingiOSApp/ui/views/AccountsTab.swift @@ -20,15 +20,17 @@ struct AccountsTab: View { } } } - + Spacer() - NavigationLink(destination: AddAccountDialog()) { + NavigationLink(destination: LazyView(AddAccountDialog())) { Text("Add account") } - + .frame(height: 35) + Spacer() } + .background(Color(UIColor.systemGroupedBackground)) } }