Skip to content

Instantly share code, notes, and snippets.

@theindianappguy
Created May 12, 2020 06:13
Show Gist options
  • Save theindianappguy/522eb163aea6a85868bf40e7a42f5588 to your computer and use it in GitHub Desktop.
Save theindianappguy/522eb163aea6a85868bf40e7a42f5588 to your computer and use it in GitHub Desktop.
InputDecoration textFieldInputDecoration for Flutter Chat App
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