Created
December 5, 2018 21:57
-
-
Save luismts/1ef3012df8b6748022594365ab836c5b 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 ItemsSource="{Binding Blogs}"> | |
<CollectionView.ItemTemplate> | |
<DataTemplate> | |
<Grid Padding="10"> | |
<Grid.RowDefinitions> | |
<RowDefinition Height="Auto" /> | |
<RowDefinition Height="Auto" /> | |
</Grid.RowDefinitions> | |
<Grid.ColumnDefinitions> | |
<ColumnDefinition Width="Auto" /> | |
<ColumnDefinition Width="Auto" /> | |
</Grid.ColumnDefinitions> | |
<Image Grid.RowSpan="2" | |
Source="{Binding ImageUrl}" | |
Aspect="AspectFill" | |
HeightRequest="60" | |
WidthRequest="60" /> | |
<Label Grid.Column="1" | |
Text="{Binding Name}" | |
FontAttributes="Bold" /> | |
<Label Grid.Row="1" | |
Grid.Column="1" | |
Text="{Binding Location}" | |
FontAttributes="Italic" | |
VerticalOptions="End" /> | |
</Grid> | |
</DataTemplate> | |
</CollectionView.ItemTemplate> | |
... | |
</CollectionView> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment