Created
December 12, 2019 17:58
-
-
Save shubie/6c2f6373846bf3cd4e8954367acc2df3 to your computer and use it in GitHub Desktop.
This file contains 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
RaisedButton blueButton(String label, Function fun) { | |
return RaisedButton( | |
onPressed: fun, | |
textColor: Colors.white, | |
color: Color(0xfff063057), | |
padding: const EdgeInsets.all(15.0), | |
child: Text(label), | |
shape: RoundedRectangleBorder( | |
borderRadius: BorderRadius.circular(10.0), | |
), | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment