Skip to content

Instantly share code, notes, and snippets.

@gtokman
Created September 23, 2021 23:04
Show Gist options
  • Save gtokman/8b54a6279b1216e25f8590a59c4cdb7f to your computer and use it in GitHub Desktop.
Save gtokman/8b54a6279b1216e25f8590a59c4cdb7f to your computer and use it in GitHub Desktop.
NavigationView {
List {
ForEach(businesses) { business in
Text(business.name)
}
}
.listStyle(.plain)
.navigationTitle(Text("Boston"))
.searchable($searchText)
// Receive an update here when the user selects the done button on the keyboard
.onSubmit(of: .search) {
print(searchText)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment