Hi,
is that possible to set text color in Date / Time picker.
i had tried with custom render too. still the color is not changing.
``
EditText nativePicker;
protected override void OnElementChanged(ElementChangedEventArgs<Xamarin.Forms.TimePicker> e)
{
base.OnElementChanged(e);
nativePicker = this.Control;
nativePicker.Text = "Select start time";
nativePicker.SetLinkTextColor ( Android.Graphics.Color.Red );
}
``