Created
September 23, 2021 23:04
-
-
Save gtokman/8b54a6279b1216e25f8590a59c4cdb7f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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