Bill Rei
Bill Rei

Reputation: 443

SwiftUI How to Remove TabViewController

i've created a TabView for my photos collection. But i confused how can i remove this TabView controller

enter image description here

Thank you for everyone who answered my question 😇

Upvotes: 0

Views: 45

Answers (1)

wildcard
wildcard

Reputation: 1247

Add this to your TabView:

.tabViewStyle(.page(indexDisplayMode: .never))

Upvotes: 1

Related Questions