Answers for "border radius in outlined button"

1

flutter outlinedbutton border radius

OutlinedButton(
  child: Text('Woolha.com'),
  style: OutlinedButton.styleFrom(
    primary: Colors.white,
    backgroundColor: Colors.teal,
    shape: const RoundedRectangleBorder(borderRadius: BorderRadius.all(Radius.circular(10))),
  ),
)
Posted by: Guest on September-05-2021
1

css button:focus border-radius square

button:focus {
  outline: none;
}
Posted by: Guest on December-02-2020

Code answers related to "Dart"

Browse Popular Code Answers by Language