<ListView x:Name="listView1" Margin="5" RowHeight="80">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<StackLayout Orientation="Horizontal" Margin="5">
<Label Text="{Binding Name}"
HorizontalTextAlignment="Center" VerticalTextAlignment="Center"
BackgroundColor="Aqua"
FontSize="Title"
HorizontalOptions="FillAndExpand"/>
</StackLayout>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>