hello, am using sfchip in my xamarin app but it does not show colors on the chips
code -
MainPage.xaml
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:d="http://xamarin.com/schemas/2014/forms/design"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
x:Class="Serena.MainPage"
NavigationPage.BackButtonTitle=""
NavigationPage.HasNavigationBar="false"
xmlns:buttons="clr-namespace:Syncfusion.XForms.Buttons;assembly=Syncfusion.Buttons.XForms"
>
<buttons:SfChipGroup x:Name="TextColor" Type="Action" Margin="18,0,18,0" SelectionIndicatorColor="#9900CC">
<buttons:SfChipGroup.Items>
<buttons:SfChip BackgroundColor="#EB5757" HeightRequest="35" WidthRequest="35"/>
<buttons:SfChip BackgroundColor="#F2994A" HeightRequest="35" WidthRequest="35"/>
<buttons:SfChip BackgroundColor="#F2C94C" HeightRequest="35" WidthRequest="35"/>
<buttons:SfChip BackgroundColor="#219653" HeightRequest="35" WidthRequest="35"/>
<buttons:SfChip BackgroundColor="#2F80ED" HeightRequest="35" WidthRequest="35"/>
<buttons:SfChip BackgroundColor="#9B51E0" HeightRequest="35" WidthRequest="35"/>
<buttons:SfChip BackgroundColor="#333333" HeightRequest="35" WidthRequest="35"/>
<buttons:SfChip BackgroundColor="#FFFFFF" HeightRequest="35" WidthRequest="35"/>
</buttons:SfChipGroup.Items>
</buttons:SfChipGroup>
</ContentPage>