https://kotlinlang.org logo
#compose
Title
# compose
a

Alejandro Rios

07/13/2020, 10:29 PM
This might be a noob question, i have a
Scaffold
which has a
bodyContent
with a
Box
and a list inside and it scrolls ok, then, i added a
bottomBar
but now i cant see the bottom of the list, do you know if there's a way to avoid this? Thanks
a

Alejandro Rios

07/13/2020, 10:36 PM
🤔, I'm not, thanks @Zach Klippenstein (he/him) [MOD]
z

Zach Klippenstein (he/him) [MOD]

07/13/2020, 10:42 PM
Cc @matvei
m

matvei

07/13/2020, 10:53 PM
Thanks Zach for taking over this! Yeah, it's becoming more and more of a problem
a

Adam Powell

07/13/2020, 11:05 PM
@cb and I have some general ideas around having this and system window insets use the same infrastructure for communicating this sort of thing
👍 2
z

Zach Klippenstein (he/him) [MOD]

07/13/2020, 11:09 PM
That would be neat
c

cb

07/14/2020, 8:23 AM
Some of my early thoughts are here: https://github.com/chrisbanes/tivi/pull/639
👏 1
As a summary, it provides new modifiers like so:
Copy code
// Set padding which matches status bar
Modifier.statusBarPadding()

// Set height which matches nav bar
Modifier.navigationBarHeight()
All heavily inspired by my explorations with Insetter (https://github.com/chrisbanes/insetter)