--
You received this message because you are subscribed to the Google Groups "Flutter Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to flutter-dev...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
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),
enabledBorder: UnderlineInputBorder(
borderSide: BorderSide(color: Colors.white,width: 1.0, style: BorderStyle.none ),
),focusedBorder: UnderlineInputBorder(borderSide: BorderSide(color:Colors.white))
The above changes I made works fine. You can now use it.Thanks,Venu Gopal