如何隐藏Digital Crown旋转指示器?

问题描述 投票:1回答:1

有没有办法在Apple Watch上使用SwiftUI(或其他方式)隐藏数字表冠旋转指示器?

app screenshotthats what I'm trying to get rid off.

这里是示例代码。

struct ContentView: View {
    var body: some View {
        List {
            Text("uno")
            Text("uno")
            Text("uno")
            Text("uno")
            Text("uno")
            Text("uno")
        }
    }
}

(很神奇吧?)

我找不到任何对应的 "隐藏指示器"。有人能帮忙吗?

swiftui watchkit watchos
1个回答
1
投票

不知道如何用隐藏指示器的方法 List但如果你使用的是一个指标,你可以选择隐藏该指标。ScrollView 而不是。

ScrollView(showsIndicators: false) {
  // ...
}
© www.soinside.com 2019 - 2024. All rights reserved.