Yes , but that is precisely what we want when we make two separate screens, each one with its own Scaffold .
Read moreCan I use multiple Scaffold in Flutter?
Conclusion. As a general rule of thumb: use only one Scaffold per Route /screen . Use only one Scaffold with widgets such as TabController or IndexedStack to navigate the content inside the body of a single screen.
Read moreCan I use multiple Scaffold in Flutter?
Conclusion. As a general rule of thumb: use only one Scaffold per Route /screen . Use only one Scaffold with widgets such as TabController or IndexedStack to navigate the content inside the body of a single screen.
Read moreWhat is the difference between Scaffold and container in Flutter?
The Scaffold will give you a default struture properties like appbar, body, floatingaction button, drawer and many more to reduce your headache for creating a new custom structure yourself for your app activity/screen/page/UIView. While Container is a flexible widget with common properties any view will need.
Read moreWhat is the difference between Scaffold and container in Flutter?
The Scaffold will give you a default struture properties like appbar, body, floatingaction button, drawer and many more to reduce your headache for creating a new custom structure yourself for your app activity/screen/page/UIView. While Container is a flexible widget with common properties any view will need.
Read more