Created
August 3, 2020 20:02
-
-
Save dhindrik/5f723e6b5cc8f10efd9b229f76e1b5b3 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
<CollectionView ItemSource="{Binding Items}"> | |
<CollectionView.ItemTemplate> | |
<DataTemplate x:DataType="models:Person"> | |
<StackLayout> | |
<Label Text="{Binding Name, Mode=OneTime}" /> | |
<Label Text="{Binding Email, Mode=OneTime}" /> | |
<label Text="{Binding Count}" /> | |
</DataTemplate> | |
</CollectionView.ItemTemplate> | |
</CollectionView> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment