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
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 Renderer
s in each platform. There, you have the ability to interact with native APIs of the platform.
CodePudding user response:
MS official docs link: https://docs.microsoft.com/en-us/xamarin/xamarin-forms/app-fundamentals/custom-renderer/