How can I remove the underline on Androind and iOS?

I already tried the following that works in the Xamarin.Forms (Android) controls that I customize:
protected override void OnElementChanged(ElementChangedEventArgs<AutoSuggestBox> e)
{
base.OnElementChanged(e);
if (Control != null)
{
GradientDrawable gd = new GradientDrawable();
gd.SetColor(global::Android.Graphics.Color.Transparent);
this.Control.SetBackground(gd);
this.Control.SetRawInputType(InputTypes.TextFlagNoSuggestions);
}
}
I'm using plugin's last version (1.1.1) on Xamarin.Forms (4.7.0.1080).
Regards.
How can I remove the underline on Androind and iOS?
I already tried the following that works in the Xamarin.Forms (Android) controls that I customize:
I'm using plugin's last version (1.1.1) on Xamarin.Forms (4.7.0.1080).
Regards.