Im fairly new to flutter, I have created a nice BottomAppBar with a docked FAB however i also want to use this AppBar for page navigation. I\'ve tried it with a BottomNavigatio
The difference between the BottomAppBar
and the BottomNavigationBar
, is that with the last one, you can set a list of children (pages) to be rendered as you click on the icons below (onTap method). With the BottomAppBar
, you have to set a Navigator
method, speaking in UI/UX therms, I don't think it's very beauty to see.
(Navigator.of(context).pushName('/yourScreenHere')
Then, every screen you make you can add an AppBar on them.