Skip to content

Instantly share code, notes, and snippets.

@trey-rosius
Last active January 24, 2019 07:01
Show Gist options
  • Select an option

  • Save trey-rosius/023486393eef30b4b612d50d6a8a466a to your computer and use it in GitHub Desktop.

Select an option

Save trey-rosius/023486393eef30b4b612d50d6a8a466a to your computer and use it in GitHub Desktop.
new Container(
width: size.width / 1.4,
padding: EdgeInsets.only(top: 10.0, bottom: 10.0),
child: RaisedButton(
shape: new RoundedRectangleBorder(
borderRadius: new BorderRadius.circular(30.0)),
onPressed: () {
},
color: Theme.of(context).primaryColor,
child: new Padding(
padding: const EdgeInsets.all(15.0),
child: new Text("Make Order Now",
style: new TextStyle(
color: Colors.white,
fontSize: 17.0,
fontWeight: FontWeight.w600)),
),
),
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment