if I have a `Row` containing just a `TextField` an...
# compose
j
if I have a
Row
containing just a
TextField
and a
Button
, what's the proper way to set the TextField's height to always match the Button height? I thought giving the TextField this modifier would do the trick, but it doesn't.. the TextField is still much taller than my button:
Modifier.height(IntrinsicSize.Min)
m
This works in combination with parent fillmaxheight. It is possible some composables wont work due to fixedsize idk. But thats the essence
j
thanks for the response mate, your comment about fixed sizes was correct. the default TextField implementation has quite a large minimum height