is just a container that positions typical elements on a Material screen correctly. It places your floating action buttons, top bars, bottom bars and stuff, and makes sure that they adhere to Material guidelines such as moving the FAB when a snackbar pops up etc. Nesting several `Scaffold`s is not a problem, as long as you keep track of the various `ScaffoldState`s. simple smile
k
kotlinforandroid
07/05/2022, 11:50 AM
I just tried it out. I have a
Scaffold(BottomBar) -> Scaffold(TopBar)
below it. And the content of the second scaffold draws over its own TopBar. Do I have to somehow use padding to make this work?