Last active
February 14, 2020 18:53
-
-
Save mukireus/6847b936af9d8dfed5b05f00d1fcaf73 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 _loginButton yazmanız yeterlidir. | |
Widget get _loginButton => InkWell( | |
borderRadius: _loginButtonBorderStyle, | |
onTap: () {}, | |
child: Container( | |
height: UIHelper.dynamicHeight(300), | |
width: UIHelper.dynamicWidth(500), | |
child: Center( | |
child: Text(UIHelper.signIn.toUpperCase(), | |
style: UITextStyles.buttonStyle), | |
), | |
), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment