- Flutter Widget Livebook

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),
);

Related Links

  1. Example
  2. Related Links