SwiftUI Picker Does Not Scroll to Selection

585 Views Asked by At

I'm trying to use the SwiftUI 2 ScrollViewReader with a picker so that tapping on the picker displays the picker list with the current selection in the view (preferably to an anchor). Nothing that I have tried, including the below, even has any effect on the list. It seems like this should be simple.

struct ContentView: View {

    @State private var topIntYears: [Int] = createIntYearList()
    @State private var startYear = 1923
    @State private var startDollars: String = "1"

    var body: some View {
        VStack {
            Text("Do Something")
            NavigationView {
                ScrollViewReader { svr in
                    Form {
                        Picker("Base Year", selection: $startYear) {
                            ForEach(topIntYears, id:\.self) {
                                Text(String($0))
                                //this does not work
                                    .simultaneousGesture(
                                        TapGesture()
                                            .onEnded { _ in
                                                print("Picker tapped")
                                                svr.scrollTo(startYear)
                                            }
                                    )
                            }
                        }//pick
                        TextField("Base dollars", text: $startDollars)
                            .keyboardType(.decimalPad)
                            .padding()
                    }//form
                }//svr
            }//nav
        }//v
    }//body
}

func createIntYearList() -> [Int] {
    var years: [Int] = []
    for y in 1898...2021 {
        years.append(y)
    }
    return years
}//int years

Xcode 12.4, iOS 14.4 Any guidance would be appreciated.

0

There are 0 best solutions below