Skip to content

Instantly share code, notes, and snippets.

@vikivyas
Forked from theindianappguy/widgets.dart
Created December 11, 2020 14:48
Show Gist options
  • Save vikivyas/773897ec4d0c3fc0f334c837c58728e7 to your computer and use it in GitHub Desktop.
Save vikivyas/773897ec4d0c3fc0f334c837c58728e7 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