If you want to change the underline color of textField in flutter? Use the below example code to change the underline color of textField in flutter.
1 2 3 4 5 6 7 8 9 10 11 | decoration: InputDecoration( hintText: 'Username', hintStyle: TextStyle(color: Colors.white), enabledBorder: new UnderlineInputBorder( borderSide: BorderSide( color: Colors.white, width: 1.0, style: BorderStyle.none ), ), ), |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.