Hello,
Welcome to our Microsoft Q&A platform!
For this function, try the following steps (which I've tested on my side and it works fine):
1.Download the solution project from the project site of the plugin.
2.Copy the png files from the 'Xamarin.RangeSlider.iOS' part to Resources folder of your iOS project.
3.Add the assembly tag and the two initialization command in the AppDelegate class.
[assembly: Xamarin.Forms.ExportRenderer(typeof(Xamarin.RangeSlider.Forms.RangeSlider), typeof(Xamarin.RangeSlider.Forms.RangeSliderRenderer))]
namespace TestApplication_1.iOS
{
[Register("AppDelegate")]
public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate
{
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
global::Xamarin.Forms.Forms.Init();
LoadApplication(new App());
var t1 = typeof(Xamarin.RangeSlider.RangeSliderControl);
var t2 = typeof(RangeSliderRenderer);
return base.FinishedLaunching(app, options);
}
}
}
4.Clean and rebuild your project.
Best Regards,
Jarvan Zhang
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.