Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
iOS 15 iPad fix
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenHeaps committed Oct 19, 2023
1 parent d966100 commit 52c01c9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Sources/BraveWallet/Crypto/CryptoTabsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ struct CryptoTabsView<DismissContent: ToolbarContent>: View {
.toolbar { sharedToolbarItems }
.background(settingsNavigationLink(for: .portfolio))
}
.navigationViewStyle(.stack)
.tabItem {
Tab.portfolio.tabLabel
}
Expand All @@ -106,6 +107,7 @@ struct CryptoTabsView<DismissContent: ToolbarContent>: View {
.toolbar { sharedToolbarItems }
.background(settingsNavigationLink(for: .activity))
}
.navigationViewStyle(.stack)
.tabItem {
Tab.activity.tabLabel
}
Expand All @@ -122,6 +124,7 @@ struct CryptoTabsView<DismissContent: ToolbarContent>: View {
.toolbar { sharedToolbarItems }
.background(settingsNavigationLink(for: .accounts))
}
.navigationViewStyle(.stack)
.tabItem {
Tab.accounts.tabLabel
}
Expand All @@ -138,6 +141,7 @@ struct CryptoTabsView<DismissContent: ToolbarContent>: View {
.toolbar { sharedToolbarItems }
.background(settingsNavigationLink(for: .market))
}
.navigationViewStyle(.stack)
.tabItem {
Tab.market.tabLabel
}
Expand Down

0 comments on commit 52c01c9

Please sign in to comment.