diff --git a/ui/BankingiOSApp/BankingiOSApp/ui/views/InfoButton.swift b/ui/BankingiOSApp/BankingiOSApp/ui/views/InfoButton.swift index d5cfb855..67106f9e 100644 --- a/ui/BankingiOSApp/BankingiOSApp/ui/views/InfoButton.swift +++ b/ui/BankingiOSApp/BankingiOSApp/ui/views/InfoButton.swift @@ -36,7 +36,10 @@ struct InfoButton: View { HStack { Spacer() - Button("OK") { self.showInfoPopover = false } + Button(action: { self.showInfoPopover = false }) { + Text("OK") + .frame(minWidth: 120, minHeight: 35) + } Spacer() }