I have a listview and I want to set two background colours for the cells in the listview like in the image below. How can I achieve this?
`
<ListView.ItemTemplate>
<ViewCell.View>
<Label VerticalTextAlignment="Center" Text="{Binding itemIdLastFour}" />
<Label VerticalTextAlignment="Center" Text="{Binding Item}" />
</ViewCell.View>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>`