button shape flutter code example
Example 1: raisedbutton shape flutter
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(18.0),
side: BorderSide(color: Theme.of(context).primaryColor),
),
Example 2: using shape property in flutter for circular corner
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(18.0),
side: BorderSide(color: Colors.red)
),
Example 3: how to change the shape of a buton in flutter to cicular
RawMaterialButton(
...,
shape: CircleBorder(),
)