Skip to content

Instantly share code, notes, and snippets.

@mukireus
Last active February 14, 2020 18:53
Show Gist options
  • Save mukireus/6847b936af9d8dfed5b05f00d1fcaf73 to your computer and use it in GitHub Desktop.
Save mukireus/6847b936af9d8dfed5b05f00d1fcaf73 to your computer and use it in GitHub Desktop.
//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