Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

how to remove border in outlinebutton

OutlinedButton(
    onPressed: () {},
    child: Text('Outlined button'),
    style: OutlinedButton.styleFrom(
      side: BorderSide(
         color: Colors.transparent,
      ),
    ),
  ),
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #remove #border #outlinebutton
ADD COMMENT
Topic
Name
6+9 =