0

我在 SwiftUI NavigationView 上有一个表单。表单没有特殊元素,只有标准元素:TextField、DatePicker 和一些按钮

我想以编程方式滚动到特定元素。我怎样才能做到这一点?

ScrollViewReader 似乎不适用于表单。

ScrollViewReader { p in
  Form {
    ....
    Button(action: {
      p.scrollTo(150)
    }) {
      Text(self.label)
    }
}
4

1 回答 1

3

为每个元素提供 id 并将此 id 传递给.scrollTo(id)方法。像这样

struct ContentView: View {
    var body: some View {
        
        ScrollViewReader { p in
            Form {
                Button(action: {
                }) {
                    Text("Top")
                }.id(150)
                
                ForEach(0..<30) { index in
                    Text("\(index)")
                        .id(index)
                }
                Button(action: {
                    p.scrollTo(150)
                }) {
                    Text("Scroll")
                }
            }
        }
    }
}
于 2021-01-18T15:07:09.547 回答