Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. CupertinoButton(
  2. padding: const EdgeInsets.only(left: 64.0, right: 64.0),
  3. borderRadius: BorderRadius.all(Radius.circular(25)),
  4. color: Color(Const.colorPrimary),
  5. onPressed: () {
  6. if (_validate()) {
  7. performSubmitActions();
  8. }
  9. },
  10. child: new Text(
  11. submitText,
  12. style: TextStyle(fontSize: 15.0, color: Colors.white),
  13. ),
  14. ))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement