Hi,
Is there any way to change the background colour of a group header in a grouped sflistview? In my tapped event handler I get the ItemData and, depending if it's a group header or normal item I'm loading a different view. So I'd like the header to match the background colour on selection of the normal list item.
My group header template is:
<syncfusion:SfListView.GroupHeaderTemplate>
<DataTemplate>
<ViewCell>
<ViewCell.View>
<StackLayout Orientation="Horizontal" HorizontalOptions="FillAndExpand">
<Label Text="{Binding Key}" TextColor="White" FontSize="18" FontAttributes="Bold" VerticalOptions="Center" HorizontalOptions="Start" />
</StackLayout>
</ViewCell.View>
</ViewCell>
</DataTemplate>
</syncfusion:SfListView.GroupHeaderTemplate>