Answers for "textbutton.stylefrom flutter radius border"

0

flutter border around textbutton

OutlinedButton(
  onPressed: null,
  style: ButtonStyle(
    shape: MaterialStateProperty.all(
      RoundedRectangleBorder(
      	borderRadius: BorderRadius.circular(30.0),
      )
	),
  ),
  child: const Text("Button text"),
);
Posted by: Guest on September-19-2021

Code answers related to "textbutton.stylefrom flutter radius border"

Code answers related to "Dart"

Browse Popular Code Answers by Language