Skip to content

Remove underline on Android and iOS #83

@eko94

Description

@eko94

How can I remove the underline on Androind and iOS?

image

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions