Zoltan Demant
12/17/2021, 1:25 PMTextField
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?Chris Sinco [G]
12/18/2021, 4:46 AMModifier.height(IntrinsicSize.Min)
to the ColumnZoltan Demant
12/18/2021, 7:50 AMAlertDialog
extending to full height.