Answers for "outline button shape flutter"

4

rounded raisedbutton in flutter

RaisedButton(
                onPressed: () {},
                color: Colors.amber,
                shape: RoundedRectangleBorder(
                    borderRadius: BorderRadius.circular(10)),
                child: Text("Click This"),
              )
Posted by: Guest on August-29-2020
1

flutter outline button

OutlinedButton(
  child: Text('Example'),
  onPressed: () {
    print('Pressed');
  },
)
Posted by: Guest on April-25-2021
1

flutter outline button

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

Code answers related to "Dart"

Browse Popular Code Answers by Language