Hi all,
i have tried to get the SfRating Xamarin Forms Control to work in iOS, with no success :-(
I have added the References (Syncfusion.SfRating.iOS, Syncfusion.SfRating.XForms, Syncfusion.SfRating.XForms.iOS) to the Project and also initialised the Renderer in FinishedLaunching.
Used Syncfusion version is 14.0.3.52.
AppDelegate.cs:
...
new SfRatingRenderer();
...
Source:
SfRating sfRating = new SfRating();
sfRating.VerticalOptions = LayoutOptions.FillAndExpand;
sfRating.HorizontalOptions = LayoutOptions.FillAndExpand;
sfRating.ItemCount = 5;
sfRating.ItemSize = 100;
sfRating.Value = 2;
sfRating.Precision = Precision.Exact;
ContentLayout.Children.Add(sfRating);
The control simply does not show.
A try with the SfRangeSlider works like a charm.
Any hints?
Regarads
Sven