Created
February 14, 2020 18:58
-
-
Save mukireus/3f7f5b5e2af1d9f3f19c304a7ed6ff9c to your computer and use it in GitHub Desktop.
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
// 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