BottomAppBar
A container that is typically used with Scaffold.bottomNavigationBar, and can have a notch along the top that makes room for an overlapping FloatingActionButton.
Example
Scaffold( bottomNavigationBar: BottomAppBar( color: Colors.white, child: Container( child: Text('BottomAppBar'), ), ), floatingActionButton: FloatingActionButton(onPressed: null), );