Skip to content

Instantly share code, notes, and snippets.

@ibhavikmakwana
Last active June 5, 2018 11:33
Show Gist options
  • Save ibhavikmakwana/f7f8a371488fb77f97ff42836f558fe9 to your computer and use it in GitHub Desktop.
Save ibhavikmakwana/f7f8a371488fb77f97ff42836f558fe9 to your computer and use it in GitHub Desktop.
new MaterialButton(
child: setUpButtonChild(),
onPressed: null,
elevation: 4.0,
color: Colors.lightGreen,
)
Widget setUpButtonChild() {
return new Text(
"Click Here",
style: const TextStyle(
color: Colors.white,
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment