Answers for "elevatedbutton border color"

CSS
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
0

border buttom color

div {
	border-bottom-color: coral;
}
Posted by: Guest on September-01-2020

Code answers related to "elevatedbutton border color"

Browse Popular Code Answers by Language