Answers for "flutter button style border"

2

flutter button border radius

shape: RoundedRectangleBorder(
  borderRadius: BorderRadius.circular(18.0),
  side: BorderSide(color: Colors.red)
),
Posted by: Guest on May-09-2020
1

flutter outline button

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

Code answers related to "flutter button style border"

Code answers related to "Dart"

Browse Popular Code Answers by Language