Answers for "shape of raised button in flutter"

2

using shape property in flutter for circular corner

shape: RoundedRectangleBorder(
  borderRadius: BorderRadius.circular(18.0),
  side: BorderSide(color: Colors.red)
),
Posted by: Guest on May-09-2020
0

how to change the shape of a buton in flutter to cicular

RawMaterialButton(
  ...,
  shape: CircleBorder(),
)
Posted by: Guest on June-16-2020

Code answers related to "shape of raised button in flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language