I have a Xamarin forms project, I don't know how to get rid of the default blue in the background. I changed the primary color in the resource dictionary in app.xaml. it works well on the individual pages, but they're still some blue in the background (see screen-shots attached) that I need to change too. thanks heaps in advance
<Application.Resources>
<ResourceDictionary>
<Color x:Key="Primary">BurlyWood</Color>
<Style TargetType="Button">
<Setter Property="BorderRadius" Value="15"/>
<Setter Property="BorderWidth" Value="2"/>
<Setter Property="BorderColor" Value="{StaticResource Primary}"/>
<Setter Property="TextColor" Value="{StaticResource Primary}"></Setter>
<Setter Property="VisualStateManager.VisualStateGroups">
<VisualStateGroupList>
<VisualStateGroup x:Name="CommonStates">
<VisualState x:Name="Normal">
<VisualState.Setters>
<Setter Property="BackgroundColor" Value="White" />
</VisualState.Setters>
</VisualState>
<VisualState x:Name="Disabled">
<VisualState.Setters>
<Setter Property="BackgroundColor" Value="#332196F3" />
</VisualState.Setters>
</VisualState>
</VisualStateGroup>
</VisualStateGroupList>
</Setter>
</Style>
</ResourceDictionary>
</Application.Resources>