Answers for "circle button flutter"

1

circular button in flutter

Container(
                      width: 90,
                      height: 90,
                      child: RaisedButton(onPressed: (){
                      },
                        color: Colors.deepOrange,  
                        textColor: Colors.white,
                        shape: CircleBorder(side: BorderSide.none),
                        child: Text('Login',style: TextStyle(
                            fontSize: 20.0
                        ),
                        ),
                      ),
                    )
Posted by: Guest on August-26-2020
3

circle around icon flutter

CircleAvatar(
   backgroundColor: Colors.white,
   radius: 30,
   child: Icon(Icons.add),
),
Posted by: Guest on August-18-2020
0

flutter icon button circle

ClipOval(
  child: Material(
    color: Colors.blue, // button color
    child: InkWell(
      splashColor: Colors.red, // inkwell color
      child: SizedBox(width: 56, height: 56, child: Icon(Icons.menu)),
      onTap: () {},
    ),
  ),
)
Posted by: Guest on February-19-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

Browse Popular Code Answers by Language