Skip to content

Instantly share code, notes, and snippets.

@EdoardoVignati
Last active June 17, 2022 13:23
Show Gist options
  • Save EdoardoVignati/b4df348b801a74b3daffe5b4199d1738 to your computer and use it in GitHub Desktop.
Save EdoardoVignati/b4df348b801a74b3daffe5b4199d1738 to your computer and use it in GitHub Desktop.
Flutter MaterialButton with borders and optional rounded angles
MaterialButton(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(0),
side: const BorderSide(color: Colors.black),
),
elevation: 0,
onPressed: () {
//Do something
},
child: Text("Button text"),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment