Answers for "How to change OutlinedButton border color?"

0

How to change OutlinedButton border color?

OutlinedButton(
  onPressed: () {},
  child: Text('Outlined button'),
  style: OutlinedButton.styleFrom(
    side: BorderSide(width: 5.0, color: Colors.blue),
  ),
)
Posted by: Guest on September-05-2021

Code answers related to "How to change OutlinedButton border color?"

Code answers related to "Dart"

Browse Popular Code Answers by Language