I have tried to define the Input decoration to change the color of underline of input TextField. But it's not working. can anyone suggest what am i missing here ?
Here is the Code snippet :
decoration: InputDecoration( hintText: 'Username', hintStyle: TextStyle(color: Colors.white), border: new UnderlineInputBorder( borderSide: BorderSide(color: Colors.white, width: 1.0, style: BorderStyle.none ), ),