Home > Net >  Custom Picker Xamarin
Custom Picker Xamarin

Time:05-05

I'm trying to search how to create a custom picker on Xamarin but I have no idea how to do it.

Here is what I want to do

enter image description here

I don't even know if I need to install a nuget package. Please help and thanks.

CodePudding user response:

As mentioned by @Skalpel02, you need to sub-class the Picker class and implement the corresponding Renderers in each platform. There, you have the ability to interact with native APIs of the platform.

CodePudding user response:

This could be implemented by enter image description here

MS official docs link: https://docs.microsoft.com/en-us/xamarin/xamarin-forms/app-fundamentals/custom-renderer/

  • Related