For Android i was able to do it this way
protected override void OnElementChanged(ElementChangedEventArgs<Picker> e)
{
base.OnElementChanged(e);
if (e.OldElement == null && e.NewElement == null) return;
Control.TextSize = 14f;
Control.SetTextColor(Color.FromHex(Constants.Color.SLATE_GRAY).ToAndroid());
}
Is there any way for ios using Xamarin.Forms.Platform.ios.PickerRenderer? I could see an example in ios. link. But now sure how to convert it into Xamarin.