Answers for "outlinedbutton dotted border flutter"

2

flutter outlinedbutton border radius

OutlinedButton(
  child: Text('Woolha.com'),
  style: OutlinedButton.styleFrom(
    primary: Colors.white,
    backgroundColor: Colors.teal,
    shape: const RoundedRectangleBorder(borderRadius: BorderRadius.all(Radius.circular(10))),
  ),
)
Posted by: Guest on September-05-2021

Code answers related to "outlinedbutton dotted border flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language