Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

How to change OutlinedButton border color?

OutlinedButton(
  onPressed: () {},
  child: Text('Outlined button'),
  style: OutlinedButton.styleFrom(
    side: BorderSide(width: 5.0, color: Colors.blue),
  ),
)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #How #change #OutlinedButton #border
ADD COMMENT
Topic
Name
3+4 =