Skip to content

Instantly share code, notes, and snippets.

@DevKhalyd
Last active June 10, 2020 00:10
Show Gist options
  • Save DevKhalyd/06132448e5da7f1fccc6fd214affe2f3 to your computer and use it in GitHub Desktop.
Save DevKhalyd/06132448e5da7f1fccc6fd214affe2f3 to your computer and use it in GitHub Desktop.
Button with round corners
//Flatbutton also works.
RaisedButton(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(18.0),
side: BorderSide(color: Colors.red)),
onPressed: () {},
color: Colors.red,
textColor: Colors.white,
child: Text("Buy now".toUpperCase(),
style: TextStyle(fontSize: 14)),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment