Answers for "flutter button border color"

5

flat button rounded shape

new OutlineButton(
  child: new Text("Button text"),
  onPressed: null,
  shape: new RoundedRectangleBorder(borderRadius: new BorderRadius.circular(30.0))
)
Posted by: Guest on October-19-2020

Browse Popular Code Answers by Language