I'm trying to create a bottom navigation bar exactly like the image below, using Flutter.
What type of flutter package or custom navigation bar can be used to achieve this?
I'm trying to create a bottom navigation bar exactly like the image below, using Flutter.
What type of flutter package or custom navigation bar can be used to achieve this?
You don't need a package, you can simply use a BottomAppBar
as bottomNavigationBar
of Scaffold
, add a Row
inside, and add the icon buttons like this:
bottomNavigationBar: BottomAppBar(
child: Container(
padding: EdgeInsets.fromLTRB(0, 6, 0, 12),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
// your icon buttons here
],
),
))