# iOS 26's Auto-Minimizing Tab Bar with .tabBarMinimizeBehavior
A one-line iOS 26 TabView modifier that hides the tab bar as you scroll and brings it back, so the content leads, plus the manual .toolbar(.hidden) hacks it replaced.
A one-line iOS 26 TabView modifier that hides the tab bar as you scroll and brings it back, so the content leads, plus the manual .toolbar(.hidden) hacks it replaced.
How iOS 26's Tab(role: .search) folds search and the app menu into one tab in a SwiftUI reader, and the NavigationStack mistake that made search feel broken for weeks.
Where Apple's Liquid Glass actually earns its keep in a real iOS 26 reader, using .glassEffect() on floating SwiftUI buttons and a CSS backdrop-filter bridge for glass inside the WebView.
How to read scroll position in a SwiftUI ScrollView that hosts a WebView, turn it into reading progress, and jump back to your last position without a render loop.
Why a WebView in a SwiftUI ScrollView needs its content height reported from JavaScript, and how to measure it reliably without flicker.
How Swift and JavaScript communicate in a WebView, and why the native iOS 26 WebView drops the message handler channel and forces you to poll.