How to: Vertical Paging in SwiftUI

How I used the TabView to build a vertical paging feed like Tik Tok.

Gary Tokman
Prototypr
Published in
2 min readMar 10, 2021

--

Image of tik tok clone I built on YouTube
Video of Tik Tok clone using TabView

I used the TabView in SwiftUI to create a vertically paging feed, and here’s how you can do it too.

The TabView has a modifier called PageTabViewStyle that allows you to turn it from a traditional tab bar into a paging scroll view. After adding this modifier, you’ll…

--

--