Answers for "outlineborder for text button flutter"

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
1

flutter outline button

OutlinedButton(
              onPressed: (){}, 
              child: const Text('OutlinedButton')
            ),
Posted by: Guest on August-24-2021

Browse Popular Code Answers by Language