Flutter: how to make a TextField with HintText but no Underline?

This is what I’m trying to make: In the Flutter docs for Text Fields (https://flutter.io/text-input/) it says you can remove the underline by passing null to the decoration. However, that also gets rid of the hint text. I do not want any underline whether the text field is focused or not. UPDATE: updated accepted answer … Read more

Remove blue underline from link

I am attempting to have a link show up in white, without an underline. The text color shows up correctly as white, but the blue underline is stubbornly persisting. I tried text-decoration: none; and text-decoration: none !important; in the CSS to remove the link underline. Neither worked. .boxhead .otherPage { color: #FFFFFF; text-decoration: none; } … Read more