Last active
January 20, 2021 19:51
-
-
Save rdelrosario/7ec969fe1beca5e9c912e9bdf4f6c263 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
| <ListView ItemsSource="{Binding Restaurants}"> | |
| <ListView.ItemTemplate> | |
| <DataTemplate x:DataType="local:Restaurant"> | |
| <TextCell Text="{Binding Name}" | |
| Detail="{Binding Type}"/> | |
| </DataTemplate> | |
| </ListView.ItemTemplate> | |
| </ListView> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment