Hi,
I have used the ui kit provided for xamarin forms.
When I add the OnBoarding view I have the error:
Severity Code Description Project File Line Suppression State
No property, bindable property, or event found for 'StartPoint', or mismatching type between value and property.
I can't find the solution.
Can you help?
Thanks,
My code is as below:
<Style x:Key="SfGradientViewStyle" TargetType="gradient:SfGradientView">
<Setter Property="BackgroundBrush">
<Setter.Value>
<gradient:SfLinearGradientBrush StartPoint="0,0" EndPoint="1,1">
<gradient:SfLinearGradientBrush.GradientStops>
<gradient:SfGradientStop Offset="0.0" Color="#d54381" />
<gradient:SfGradientStop Offset="1.0" Color="#7644ad" />
</gradient:SfLinearGradientBrush.GradientStops>
</gradient:SfLinearGradientBrush>
</Setter.Value>
</Setter>
</Style>