Skip to content

Instantly share code, notes, and snippets.

@transcendr
Created February 3, 2020 01:32
Show Gist options
  • Save transcendr/7554910c81d20116e5860d0e36d341d6 to your computer and use it in GitHub Desktop.
Save transcendr/7554910c81d20116e5860d0e36d341d6 to your computer and use it in GitHub Desktop.
Learn Flutter
RaisedButton(
child: Text(
'Add Transaction',
style: TextStyle(
// color: Colors.white,
fontWeight: FontWeight.bold,
fontSize: 18,
),
),
color: Colors.purple,
onPressed: () {},
textColor: Colors.white,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(30),
side: BorderSide(
color: Colors.purpleAccent,
),
),
padding: EdgeInsets.symmetric(vertical: 15, horizontal: 25),
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment