Hi,
I have created a TabView
with TabViewStyle.page.
Is there a way to present the dots on watchOS? I have written some demo watchOS project:
import SwiftUI
@main
struct PageControllerWatchTestApp: App {
var body: some Scene
WindowGroup {
TabView {
Color(.red)
Color(.blue)
Color(.orange)
}.tabViewStyle(.page)
}
}
}
If I try the same code on iOS the dots are presented. Is there a way to enable the dots on watchOS?
I am using watchOS 9 Beta 4 with Xcode 14 Beta 4.