Is not possible to wrap content height on a `Scaff...
# compose
p
Is not possible to wrap content height on a
Scaffold
? I'm trying it with
Scaffold(
modifier = Modifier.wrapContentHeight()
but the content of the
scaffold
is filling the entire screen height even having it a single line text on it
z
wrapContentHeight
won't do anything on a layout that fills max size, which must be what
Scaffold
is doing.
p
@Zach Klippenstein (he/him) [MOD] I'm stuck doing that, I simply need to have a column with a top content, a bottom content and a middle content that can be long or short, but that middle content haves a scrollbar, and I need the column to wrap content
is that not possible with compose?
z
responding in that thread
scaffold and column are wildly different things