How can i reduce the spacing between the buttons? I tried tweaking the ItemSpacing
property but sadly it does nothing.
<CollectionView x:Name="TagsView"
Grid.Row="0">
<CollectionView.ItemsLayout>
<LinearItemsLayout Orientation="Horizontal" ItemSpacing="0"/>
</CollectionView.ItemsLayout>
<CollectionView.ItemTemplate>
<DataTemplate>
<Button Text="{Binding Name}"
Padding="7"
FontSize="12"
CornerRadius="12"
HorizontalOptions="FillAndExpand"
VerticalOptions="CenterAndExpand"
BackgroundColor="AliceBlue"
TextColor="Black"
Clicked="TagButton_Clicked"/>
</DataTemplate>
</CollectionView.ItemTemplate>
</CollectionView>