0

I found How to create a circle icon button in Flutter? which has this code:

RawMaterialButton(
  onPressed: () {},
  elevation: 2.0,
  fillColor: Colors.white,
  child: Icon(
    Icons.pause,
    size: 35.0,
  ),
  padding: EdgeInsets.all(15.0),
  shape: CircleBorder(),
)

which works fine, but I can't insert a border with color. Looking on https://api.flutter.dev/flutter/painting/CircleBorder-class.html I cannot find any ways to insert a border.

What's the simplest way to insert a border in a circular button in Flutter?

Paprika
  • 402
  • 5
  • 18

2 Answers2

1

You can set the border by applying the side property to the CircleBorder. See the code below.

     RawMaterialButton(
      onPressed: () {},
      elevation: 2.0,
      fillColor: Colors.white,
      child: Icon(
        Icons.pause,
        size: 35.0,
      ),
      padding: EdgeInsets.all(15.0),
      shape: CircleBorder(
        side: BorderSide(width: 5, color: Colors.red, style: BorderStyle.solid),
      ),
    );
bluenile
  • 5,673
  • 3
  • 16
  • 29
0

here is how you can set the border for the button:

shape: CircleBorder(
        side: BorderSide(width: 5.0, style: BorderStyle.solid, color: Colors.red)
      ),

enter image description here

Ketan Ramteke
  • 10,183
  • 2
  • 21
  • 41