Answers for "shape in raised button flutter"

9

elevated button shape flutter

style: ButtonStyle(
  shape: MaterialStateProperty.all<RoundedRectangleBorder>(
    RoundedRectangleBorder(
      borderRadius: BorderRadius.circular(18.0),
      side: BorderSide(color: Colors.red)
    )
  )
)
Posted by: Guest on March-16-2021
3

button shape flutter

shape: RoundedRectangleBorder(),
shape: BeveledRectangleBorder(),
shape: ContinuousRectangleBorder(),
shape: CircleBorder(),
Posted by: Guest on December-20-2021

Code answers related to "shape in raised button flutter"

Browse Popular Code Answers by Language