How To Remove Border In Outlinebutton

[Solved] How To Remove Border In Outlinebutton | Swift - Code Explorer | yomemimo.com
Question : remove outline on button click

Answered by : lokesh-ramchandani-in6l3jq294i2

using outline:none; we can remove that border in chrome
for tailwind css :
outline-none
focus:outline-none

Source : | Last Update : Sun, 20 Sep 20

Question : how to remove border in outlinebutton

Answered by : thankful-tapir-k7fczdz0apkk

OutlinedButton( onPressed: () {}, child: Text('Outlined button'), style: OutlinedButton.styleFrom( side: BorderSide( color: Colors.transparent, ), ), ),

Source : https://stackoverflow.com/questions/69942023/how-to-remove-border-in-outlinedbutton | Last Update : Tue, 26 Jul 22

Answers related to how to remove border in outlinebutton

Code Explorer Popular Question For Swift