Skip to content

Instantly share code, notes, and snippets.

@webianks
Last active August 13, 2019 09:31
Show Gist options
  • Save webianks/fa8785cc242efeaba4912c2e50f77f28 to your computer and use it in GitHub Desktop.
Save webianks/fa8785cc242efeaba4912c2e50f77f28 to your computer and use it in GitHub Desktop.
CupertinoButton(
padding: const EdgeInsets.only(left: 64.0, right: 64.0),
borderRadius: BorderRadius.all(Radius.circular(25)),
color: Color(Const.colorPrimary),
onPressed: () {
if (_validate()) {
performSubmitActions();
}
},
child: new Text(
submitText,
style: TextStyle(fontSize: 15.0, color: Colors.white),
),
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment