Hide Tab Bar On Scroll Down

Minimize the tab bar when downwards scrolling starts. Minimizing is supported for tab bars on only iPhone

Hide Tab Bar On Scroll Down - iOS Light Mode Preview

Platform Compatibility

iOS 26.0+ iPadOS 26.0+

Tags

SwiftUI Code

Docs
TabView {
  Tab("1", systemImage: "1.circle") {
    List {
      ForEach(0 ..< 100, id: \.self) {
        Text("Item \($0)")
      }
    }
  }

  Tab("2", systemImage: "2.circle") {
    EmptyView()
  }

  Tab("3", systemImage: "3.circle") {
    EmptyView()
  }
}
.tabBarMinimizeBehavior(.onScrollDown)

Found an issue or have a suggestion?

Created: June 10, 2025Updated: June 10, 2025