We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
Also, how can I set the default text color? I tried using "Black" but it seems that is darker than default.
Sorry, something went wrong.
How to clear underline xamarin forms.
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: