ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Follow publication

A Deep Dive Into FloatingActionButton in Flutter

Deven Joshi
ProAndroidDev
Published in
7 min readNov 7, 2018

--

Introduction to FloatingActionButton

Types of FloatingActionButton in Flutter

1. FloatingActionButton

A FAB using the default constructor
FloatingActionButton(
onPressed: () {},
child: Icon(Icons.add),
),

2. FloatingActionButton.extended

A FAB using the .extended constructor
FloatingActionButton.extended(
onPressed: () {},
icon: Icon(Icons.save),
label: Text("Save"),
),

Dealing with Colors in a FloatingActionButton

The foregroundColor colors the child inside the FAB.

FloatingActionButton(
onPressed: () {},
child: Icon(Icons.add,),
foregroundColor: Colors.red,
),

The backgroundColor colors the background of the button.

FloatingActionButton(
onPressed: () {},
child: Icon(Icons.add,),
backgroundColor: Colors.pink,
),
FloatingActionButton(
onPressed: () {},
child: Icon(Icons.add, color: Colors.yellow,),
foregroundColor: Colors.pink,
),
“+” icon turns yellow even with foregroundColor specifying pink

Changing the Look of the FloatingActionButton

Switching to a mini button

floatingActionButton: FloatingActionButton(
onPressed: () {},
child: Icon(Icons.add,),
mini: true,
),
Mini button
Default button

Changing the shape of the FAB

floatingActionButton: FloatingActionButton(
onPressed: () {},
child: Icon(Icons.add,),
shape: RoundedRectangleBorder(),
),
FAB using a RoundedRectangleBorder
floatingActionButton: FloatingActionButton(
onPressed: () {},
child: Icon(Icons.add,),
shape: RoundedRectangleBorder(borderRadius: BorderRadius.all(Radius.circular(16.0))),
),
floatingActionButton: FloatingActionButton(
onPressed: () {},
child: Icon(Icons.add,),
shape: RoundedRectangleBorder(side: BorderSide(color: Colors.pink, width: 4.0)),
),
floatingActionButton: FloatingActionButton(
onPressed: () {},
child: Icon(Icons.add,),
shape: _DiamondBorder(),
),
FAB with custom border

Changing the elevation of FAB

FAB with 0.0 elevation
FAB with 20.0 elevation

Animating the FloatingActionButton

Default FAB animation in page transitions

FAB transitions when we go from one page to the other

IMPORTANT: Hero Animations with FloatingActionButtons

OR Why can’t I have two FloatingActionButtons on the same page?

floatingActionButton: FloatingActionButton(
onPressed: () {},
child: Icon(Icons.save),
heroTag: "demoValue",
),
floatingActionButton: FloatingActionButton(
onPressed: () {
Navigator.push(context,
MaterialPageRoute(builder: (context) => SomeOtherClass()));
},
child: Icon(
Icons.add,
),
heroTag: "demoTag",
),
Hero(
child: Icon(
Icons.add,
size: 100.0,
),
tag: "demoTag",
),

That’s it for this article! I hope you enjoyed it, and leave a few claps if you did. Follow me for more Flutter articles and comment for any feedback you might have about this article.

Some of my other articles

--

--

The latest posts from Android Professionals and Google Developer Experts.

Senior Developer Advocate @ Stream | Google Developer Expert, Flutter

Responses (4)