Skip to content

Instantly share code, notes, and snippets.

@diamantidis
Created October 30, 2021 10:03
Show Gist options
  • Save diamantidis/bc947b13b8fbde17780583de1549f4eb to your computer and use it in GitHub Desktop.
Save diamantidis/bc947b13b8fbde17780583de1549f4eb to your computer and use it in GitHub Desktop.
ContentView.swift for medium post
@State var selectedIndex: Int? = nil
let options: [String] = ["GraphQL", "Swift", "Vapor"]
var body: some View {
// ...
PickerField("Select an option", data: self.options, selectionIndex: self.$selectedIndex)
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment