diff --git a/ui/BankingiOSApp/BankingiOSApp/ui/views/AccountTransactionsDialog.swift b/ui/BankingiOSApp/BankingiOSApp/ui/views/AccountTransactionsDialog.swift index 73780ab2..22902475 100644 --- a/ui/BankingiOSApp/BankingiOSApp/ui/views/AccountTransactionsDialog.swift +++ b/ui/BankingiOSApp/BankingiOSApp/ui/views/AccountTransactionsDialog.swift @@ -32,6 +32,7 @@ struct AccountTransactionsDialog: View { } } .navigationBarTitle(Text(title), displayMode: NavigationBarItem.TitleDisplayMode.inline) + .navigationBarHidden(false) } } @@ -42,4 +43,4 @@ struct AccountTransactionsDialog_Previews: PreviewProvider { BUCAccountTransaction(bankAccount: previewBanks[0].accounts[0], amount: CommonBigDecimal(double: 1234.56), currency: "€", unparsedUsage: "Usage", bookingDate: CommonDate(year: 2020, month: 5, day: 7), otherPartyName: "Marieke Musterfrau", otherPartyBankCode: nil, otherPartyAccountId: nil, bookingText: "SEPA Ueberweisung", valueDate: CommonDate(year: 2020, month: 5, day: 7)) ]) } -} \ No newline at end of file +} diff --git a/ui/BankingiOSApp/BankingiOSApp/ui/views/AccountsTab.swift b/ui/BankingiOSApp/BankingiOSApp/ui/views/AccountsTab.swift index a774d1fb..247724a8 100644 --- a/ui/BankingiOSApp/BankingiOSApp/ui/views/AccountsTab.swift +++ b/ui/BankingiOSApp/BankingiOSApp/ui/views/AccountsTab.swift @@ -32,7 +32,8 @@ struct AccountsTab: View { } .padding() } - .navigationBarTitle(Text(""), displayMode: .inline) + .navigationBarHidden(true) + .navigationBarTitle(Text("Accounts"), displayMode: .inline) } } } @@ -42,4 +43,4 @@ struct AccountsTab_Previews: PreviewProvider { static var previews: some View { AccountsTab() } -} \ No newline at end of file +} diff --git a/ui/BankingiOSApp/BankingiOSApp/ui/views/AddAccountDialog.swift b/ui/BankingiOSApp/BankingiOSApp/ui/views/AddAccountDialog.swift index f9d080d3..7167aeb6 100644 --- a/ui/BankingiOSApp/BankingiOSApp/ui/views/AddAccountDialog.swift +++ b/ui/BankingiOSApp/BankingiOSApp/ui/views/AddAccountDialog.swift @@ -48,6 +48,7 @@ struct AddAccountDialog: View { Alert(title: message.title, message: message.message, dismissButton: message.primaryButton) } .navigationBarTitle(Text("Add account"), displayMode: NavigationBarItem.TitleDisplayMode.inline) + .navigationBarHidden(false) }