Answers for "flutter elevated button circle"

2

circular elevated button flutter

style: ElevatedButton.styleFrom(
	shape: CircleBorder(),
),
Posted by: Guest on July-07-2021
0

icon with circle around button flutter

child: Ink(
    decoration: const ShapeDecoration(
      color: Colors.blue,
      shape: CircleBorder(),
    ),
    child: IconButton(
      icon: Icon(Icons.bluetooth),
      iconSize: 48,
      color: Colors.white,
      onPressed: () {
        setState(() {
          _isBluetoothOn = !_isBluetoothOn;
        });
      },
    ),
Posted by: Guest on October-24-2021

Code answers related to "flutter elevated button circle"

Browse Popular Code Answers by Language