I’m using scaffold to use bottom navigation bar. There is a page where i need to change the bottom navigation bar widget into a custom widget like image below on a state changed. How can i do this?
from this
to this
I didn’t found how to solve this, so please help and tell me how to do this in flutter/Dart.
5
You can try in your scaffold’s body this tree
body : Column -> Children [ Expanded (Things above your bottom nav bar) – Padding (you custom bottom nav bar here as a child)]
1