Flutter has a whole class of components from Material Design built-in. When the Scaffold makes things easier for a lot of developers, my case is a weird one where I want the body behind the transparent appbar.
How to display body under the Appbar of scaffold widget and not bellow?
I switched to use Stack for setting up the appbar and other content in the body. Now I feel it is harder to use most components from the material design library. Most things get harder as everywhere it gets linked to Scaffold component and I'm not using it.
How should I implement a drawer in Flutter without using Scaffold?