I am using Xamarin.Forms picker from PCL project but in case of Android and iOS the picker drop-down icon is not available and for UWP picker drop-down icon is available.
I got a solution that adds a picker drop-down image for Android and iOS platform (https://xamgirl.com/picker-with-right-side-icon-in-xamarin-forms/) and I need to use the same logic for UWP as well. So I need to hide the current drop-down icon from UWP picker(ComboBox) and update the icon with the custom image.
I would like to remove the drop-down icon from a picker in UWP As such I followed this post -(Xamarin.Forms UWP - How to hide or change color of Picker / ComboBox dropdown arrow)
I don't want to write any code inside the platform-specific App.xaml file. But I need to remove the icon from custom renderer class, is there any way to do that? Or I need to update that icon with the custom image from custom rendered class.