When using `scaffold` with `bottomBar`, and the `b...
# compose
v
When using
scaffold
with
bottomBar
, and the
body
content , the
body
content goes below
bottomBar
, how can we avoid it? so that our content dont hide behind
bottomBar
a
use the paddingValues that Scaffold provides in the top level content
Copy code
Scaffold { paddingValues -> Box(Modifier.padding(paddingValues) }
🙌 1
v
yeah I just noticed it in my project, thanks for answering