If a `TextField` shrinks its size inside a `Column...
# compose
z
If a
TextField
shrinks its size inside a
Column
, other composables under it will jump up. Normally Id use
Modifier.weight(1f)
so that they stick to the bottom, however that doesnt work inside a
AlertDialog
without causing it to extend across the entire screen height. Is there another way?
1
c
You may need to add
Modifier.height(IntrinsicSize.Min)
to the Column
z
@Chris Sinco [G] That sounded logically right, but only results in the
AlertDialog
extending to full height.