So I made a custom picker renderer for android/iOS, however the window seems to be a little too small. I've been messing around with different settings but can't quite find something that would display more than 3 items inside of the picker.
Looks like this at the moment:
Is there a way to display more than 3 items?
Could you please post a basic demo so that we can test it?
And there is a sample which run normally , you can check it by this link
https://docs.microsoft.com/en-us/dotnet/api/xamarin.forms.picker?view=xamarin-forms
Answers
Could you please post a basic demo so that we can test it?
And there is a sample which run normally , you can check it by this link
https://docs.microsoft.com/en-us/dotnet/api/xamarin.forms.picker?view=xamarin-forms
I got it sorted.
Would love to know what you did, because I have the same problem and this thread is the first result for my Google search. :-/
I have same issue after custom renderer creating. How did you recover properly height?
I made a workaround by using https://github.com/rotorgames/Rg.Plugins.Popup to create custom picker. Just a simple popup window with listview inside, that has "on item tapped" function. It gives you more styling options than using custom renderer which you have to create for both Android and iOS.
That's super cool. I'll do some experimenting. Thanks for posting your answer!