Last active
January 25, 2021 20:16
-
-
Save rdelrosario/7298b848cadae6e2aacd01328f897630 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
| <Picker Title="Choose Country | |
| SelectedItem="{Binding SelectedCountryFilter}"> | |
| <Picker.Items> | |
| <x:String>All</x:String> | |
| <x:String>United States</x:String> | |
| <x:String>Venezuela</x:String> | |
| <x:String>Dominican Republic</x:String> | |
| <x:String>Colombia</x:String> | |
| </Picker.Items> | |
| </Picker> | |
| <SearchBar Text="{Binding SearchText}" /> | |
| <ListView x:Name="RestaurantsList" | |
| ItemsSource="{Binding Restaurants}"> | |
| ... | |
| </ListView> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment