#TabView
For our new navigation pattern, we're not using TabView or NavigationStack – instead, a UINavigationController wrapped in UIViewControllerRepresentable manages all view presentation. When you switch tabs, we replace its viewControllers array using a custom crossfade transition.
October 16, 2025 at 5:04 PM
Our new back-end agnostic headless browser attached to Chrome remote debugger executing JavaScript on the native UI DOM.

BTW, that's running an older version of LiveView Native along with both a LiveComponent in one TabView and a nested LiveView in another
October 14, 2025 at 8:43 PM
The one drawback of TabView was… transition animation. 😳 My code for changing the accent color depending on the habit that’s open in the details view caused the whole view to show with really odd animations - from the leading top corner.
#SwiftUI #Animations
April 26, 2025 at 8:20 PM
📝 @matteoaltobello.bsky.social shows how to customise TabView in SwiftUI using styles iOS and iPadOS, including linking a sidebar to tabs, organising sections, and customising tabs.

Learn more here: www.createwithswift.com/exploring-ta...
Exploring Tab View Styles in SwiftUI
Explore the different styles a tab view can have in a SwiftUI app on iOS and iPadOS.
www.createwithswift.com
January 20, 2025 at 11:50 AM
SwiftUI - Understanding TabView (Part 4) is now available to LACWE members 🎉

5 new visuals

learnandcodewithenid.com
December 6, 2024 at 11:31 AM
"ja adhs hat auch vorteile"

die vorteile:
June 10, 2024 at 6:20 PM
Interesting! I resolved the issue by removing what I guess was an extraneous NavigationStack in that View. The entire app sits inside a TabView. What puzzles me is why that was the only View affected. I couldn’t find any SwiftUI release notes related to TabView or NavStack, but something changed.
April 1, 2025 at 8:38 PM
Third JavaFX TabView screencast with (beta-quality) animation, especially for @deanriverson: https://www.jonathangiles.net/javafx/TabView/demo/3
November 19, 2024 at 2:09 AM
✅ Day 79 of #100DaysOfSwiftUI : selecting items in a List, creating tab bar with TabView and tabItem()
November 9, 2024 at 8:58 AM
iOS 18's TabView now auto-scrolls to top when tapping selected tabs. Been trying all morning to override this for custom scroll positions, but seems impossible to disable. Any solutions? #swiftui
November 26, 2024 at 12:19 PM
Why settle for “almost native” when you can go fully native? Integrating SwiftUI with React Native, you can use native components (like Slider and TabView) while keeping the power of React’s architecture. Read a step-by-step guide by @kwasniew.ski 📖 hubs.li/Q038zpVL0
February 27, 2025 at 2:11 PM
Are there any iOS developers here who know if this is possible to add an accessibilityLabel to a TabView? Every time I tried, VoiceOver just simply ignored it. Maybe I'm missing something. #a11y
October 24, 2024 at 9:15 AM
SwiftUI - Understanding TabView (Part 8) is now available to LACWE members 🎉

5 new visuals

learnandcodewithenid.com
February 6, 2025 at 3:41 PM
Hey there, I wish I had the posts I had located the information regarding this issue. Basically as I understand it Apple wants you to use either the TabView or the SplitView but not both. Seems like an oversight to me as the combination is quite necessary for a lot of applications. :-)
January 22, 2025 at 4:18 AM
SwiftUI's sections in tab views are pretty smart and leave the tab bar on iOS untouched ✨

https://www.avanderlee.com/swiftui/tabview-tabbed-views/
March 27, 2025 at 4:11 PM
The delay can be eliminated entirely with the solution in the video above/below: wrap your TabView in a single NavigationStack and remove all other NavigationStacks. But I need separate stacks to manage separate paths for each tab, not to mention nav titles, toolbar buttons, etc. for each view.
December 19, 2024 at 6:23 PM
I should have mentioned yesterday - now the JavaFX TabView supports tabs on all four sides of the control.
November 19, 2024 at 2:09 AM
SwiftUI - Understanding TabView (Part 6) is now available to LACWE members 🎉

7 new visuals

learnandcodewithenid.com
December 28, 2024 at 12:47 PM
🚀 Uno Platform 6.3 is LIVE

• .NET 10 RC 1 support
• Visual Studio 2026 ready (.slnx + side-by-side)
• WebAssembly image decoding moved to WebWorkers
• Hot Design updates for even faster UI edits
• TabView reliability + new sizing modes

Read the full release blog
October 9, 2025 at 2:56 PM
Can you even use TabView inside a NavigationStack nowadays? Up until now you can use it, but it's buggy af and some things simply don't work. TabView is designed to be the root view of the app with NavigationStack in subviews, not the reverse. My app doesn't work with a TabView as the root.
August 28, 2025 at 7:36 PM
The following seems to fix it.

1. `.fixedSize(horizontal: false, vertical: true)`
2. AND `.frame(minWidth: 400)` on the children of the TabView. I didn't expect this to be needed but 🤷‍♂️
December 17, 2024 at 11:34 PM
SwiftUIでTabViewで6個以上ならべると"More"になるのか。公式のiOSクライアントはなんか変で、リスト、モデレーション、設定はフィードタブが選択されて、その上にViewが表示される。フィードからは、これらの画面には遷移できないと思う。
April 10, 2024 at 10:57 PM
December 18, 2024 at 12:16 PM
This blobby transition on TabView is so cool!

And the keyboard got a glassy refresh as well!

#ios26beta1 on daily driver 🤪
June 10, 2025 at 8:12 AM