I’m not sure is I’m doing something wrong, but in ...
# compose
a
I’m not sure is I’m doing something wrong, but in my app the content in
scaffold
is drawn behind the
bottomBar
. is this the expected behaviour? The content:
Copy code
Text(modifier = Modifier.verticalScroll(rememberScrollState()),text = <a Long content>)
m
Check the Scaffold content lambda signature. It passes an
InnerPadding
instance
👍 1
a
Thank you! However I can’t come up with a use-case where drawing behind the bottomBar would be expected. Am I missing something here?
z
If the bottom bar is translucent
👍 1
s
Or if you want some content to be seen through the fab cutout
a
These make a lot of sense! Thanks