Skip to content

Instantly share code, notes, and snippets.

@rdelrosario
Last active January 25, 2021 20:16
Show Gist options
  • Select an option

  • Save rdelrosario/7298b848cadae6e2aacd01328f897630 to your computer and use it in GitHub Desktop.

Select an option

Save rdelrosario/7298b848cadae6e2aacd01328f897630 to your computer and use it in GitHub Desktop.
<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