I\'m using a transparent AppBar and I would like to display body behind the transparent AppBar and not bellow. How to do that ?
To extend the scaffold body behind the top AppBar, add this to your scaffold:
extendBodyBehindAppBar: true,
To extend the scaffold body behind the BottomNavigationBar or BottomAppBar (which would improve the UI's appearance when you have a docked FloatingActionButton), add this to your scaffold:
extendBody: true,
As you can see in my example, this causes the body to extend to the very bottom of the screen so you'll need to make sure you add spacing so the BottomAppBar doesn't hide UI features.