Skip to content

Instantly share code, notes, and snippets.

@mukireus
Created February 14, 2020 18:58
Show Gist options
  • Save mukireus/3f7f5b5e2af1d9f3f19c304a7ed6ff9c to your computer and use it in GitHub Desktop.
Save mukireus/3f7f5b5e2af1d9f3f19c304a7ed6ff9c to your computer and use it in GitHub Desktop.
// Kullanımda ise _textField("Username", true), yazmanız yeterlidir.
Widget _textField(String text, bool obscure) => TextField(
style: TextStyle(color: Colors.white),
textAlign: TextAlign.left,
obscureText: obscure,
autocorrect: false,
cursorColor: Colors.white,
maxLines: 1,
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment