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