Answers for "borderbutton in flutter"

3

flutter button border radius

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

flatbutton border flutter

// It Does Possible!
FlatButton(
          shape: RoundedRectangleBorder(side: BorderSide(
            color: Colors.blue,
            width: 1,
            style: BorderStyle.solid
          ),
          borderRadius: BorderRadius.circular(50)),
          onPressed: null,
          child: Text('Button', style: TextStyle(color: Colors.blue)
          ),
          textColor: MyColor.white,
        )
Posted by: Guest on February-07-2022

Code answers related to "Dart"

Browse Popular Code Answers by Language