Is there a way to hide the groups headers of a listview in Xamarin forms ? I've tried to set the header height in the template but it doesn't works:
<ListView ItemsSource="{Binding GroupedMenuItems}" SelectedItem="{Binding SelectedMenuItem}" SeparatorVisibility="None" IsGroupingEnabled="true">
<ListView.GroupHeaderTemplate>
<DataTemplate>
<ViewCell Height="1">
</ViewCell>
</DataTemplate>
</ListView.GroupHeaderTemplate>
<ListView.ItemTemplate>
<DataTemplate>
<ImageCell Text="{Binding Title}" ImageSource="{Binding IconSource}" TextColor="#000000"/>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
I only want to show separators between the groups.