I'm trying to make a 3 paged tabview with 3 images for each page. Paging is OK but tabview creates a vertical scroll for my images and pushes them to the bottom.
VStack{
TabView(selection: $currentIndex.animation()) {
ForEach(0 ..< 3, id: \.self) {i in
VStack{
Image("wp\(i + 1)")
}.background(Color.blue)
}
}.tabViewStyle(PageTabViewStyle(indexDisplayMode: .never)).background(Color.yellow)
}
Any idea why that happens?

