```Column TextField DropdownMenu (height set)`...
# compose
b
Copy code
Column
  TextField
  DropdownMenu (height set)
(X is 183 in my tests, haven't tested on other devices to see if that changes) If height <= X, ok, DropdownMenu shows up below the textfield. But if height >= X + 1, then it moves up covering the TextField.
c
What's the question?
b
Sorry, I'd expected the DropdownMenu would keep growing down, anchored to the initial position. See, in the starting post I'm setting the height manually, but in the real case the Dropdown is used in an autocomplete with requiredHeightIn(max). The dropdown starts covering the TextField, and as the list is filtered by user input, it moves down to the expected place (below the TextView). Also, the TextField is far from the soft keyboard.