-
-
Save vikivyas/773897ec4d0c3fc0f334c837c58728e7 to your computer and use it in GitHub Desktop.
InputDecoration textFieldInputDecoration for Flutter Chat App
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
InputDecoration textFieldInputDecoration(String hintText) { | |
return InputDecoration( | |
hintText: hintText, | |
hintStyle: TextStyle(color: Colors.white54), | |
focusedBorder: | |
UnderlineInputBorder(borderSide: BorderSide(color: Colors.white)), | |
enabledBorder: | |
UnderlineInputBorder(borderSide: BorderSide(color: Colors.white))); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment