What is Scaffold? Jetpack compose
Scaffold allows you to implement a UI with the basic Material Design layout structure. Scaffold provides slots for the most common top-level Material components, such as TopAppBar, BottomAppBar, FloatingActionButton, and Drawer. Something like: val scaffoldState = rememberScaffoldState() // Create a coroutineScope for the animation val coroutineScope = rememberCoroutineScope() Scaffold( scaffoldState = scaffoldState, drawerContent = { … Read more