411 questions
0
votes
0
answers
73
views
iOS 26.1: In TabView, NavigationStack animation breaks when intercepting tab selection to show fullScreenCover [closed]
I'm trying to show a fullScreenCover when the user taps the third tab instead of actually switching to that tab. The issue is that resetting selectedTab = oldValue in onChange breaks the ...
1
vote
2
answers
76
views
ios SwiftUI tabbview overflow "more" page background color
Is there a way to set the background color for the generated "overflow" "more" page for when you have lots of tabs in TabView?
SwiftUI iOS
9
votes
4
answers
776
views
SwiftUI's tabViewBottomAccessory - bug in conditionally showing/hiding it?
We use SwiftUI's tabViewBottomAccessory in our iOS apps for displaying an Audio MiniPlayer View (like in the Apple Music App).
TabView(selection: $viewModel.selectedTab) {
// Tabs here
}
....
1
vote
0
answers
105
views
How can I fix the broken layout with a ScrollView inside a TabView that is inside a NavigationStack in SwiftUI?
I'd like to achieve a layout similar to the one shown in the Apple Fitness app. When I insert a ScrollView into a TabView, everything works fine, but if I try to add a NavigationStack to wrap the ...
1
vote
1
answer
85
views
How to "unfill" the SF- Symbols inside the TabView [closed]
The SF- Symbols inside the TabView are in my case always displayed filled.
Meaning instead of showing book, it shows book.fill.
Is there a way to display the "unfilled" version of the symbol?...
0
votes
1
answer
57
views
iPad layout shift hiding the tab bar after navigation
In SwiftUI, I have a layout shift bug. Here's a code sample that reproduces the issue.
struct ContentView: View {
var body: some View {
TabView {
Tab("Home", ...
0
votes
1
answer
86
views
How to make Custom TabBar with curved selected tab that stays?
I’m new to SwiftUI and have completed half of my TabBar UI. However, I’m stuck on adding an outer corner to the selected tab.
This is what I currently have:
This is what I'm tring to do:
Below is my ...
0
votes
1
answer
245
views
SwiftUI Full Cover of Screen With TabView Not Working
I am attempting to cover the entire screen (iPad and iPhone) while using a TabView, but there always remains the bottom strip that is not covered.
struct CoverTestApp: App {
var body: some Scene {
...
0
votes
1
answer
419
views
How to hide `TabViewBottomAccessory` when drilling down?
I would like to conditionally render TabViewBottomAccessory because I don't want to show it when I am drilling down. When going to the child view I want to hide both tab view (which I achieved by ....
0
votes
0
answers
130
views
iOS 26: .tabViewBottomAccessory - How to open a new view on the tabViewBottomAccessory
If you are currently on the beta of iOS 26, open Apple Music and you'll see a tabViewBottomAccessory that is the mini NowPlayingView. When tapped, it opens the NowPlayingView. Is there a similar way ...
0
votes
0
answers
1k
views
How to use iOS 26 .tabViewBottomAccessory with nested TabViews
I'm trying to use .tabViewBottomAccessory introduced in iOS 26 to have an audio bar that exists throughout my entire app. The problem I'm having is that I have some nested TabViews, which seems to ...
0
votes
0
answers
40
views
Why Tab in settings view under chevron is disabled?
If the window width is not enough to display all the tabs, then some may be hidden by the arrow.
I have exactly this situation. But the problem is that the hidden tab turns out to be inactive/...
3
votes
2
answers
2k
views
Liquid Glass bar above tab view like the Apple Music app?
Apple's new iOS 26 Liquid Glass design language includes a bar that floats above the new tab bar.
Seen here in the Music app:
As you scroll, the bar elegantly flows down into the tab bar space, which ...
2
votes
1
answer
326
views
Adopting both NavigationSplitView and TabView depending on Window/Screen Width [closed]
I’m building a Files-style SwiftUI app and my primary goal is to adopt both:
NavigationSplitView on wider (regular) widths (iPad/macOS), and
TabView + NavigationStack on narrow (compact) widths (...
14
votes
3
answers
20k
views
How to implement iOS 26 Liquid Glass tab bar with separate floating action button?
Apple's iOS 26 "Liquid Glass" introduces a new UI paradigm of a tab bar with a separate floating action button off to the side. This seems to be a common UI design used in many of Apple's ...