I just started using Compose Desktop and I don't seem to get scrolling working correctly. I have a column with a text and with another column that contains a list of self made buttons. Apparently the parent column scrolls automatically but if I code the nested column to be scrollable with Modifier.scrollable() then I can only scroll down but not up.
If I restrict the height of the nested column so that the parent column does not automatically scroll then the nested column does not scroll either, not even with .scrollable. I want the nested column to scroll while the text is still visible. Am I doing something wrong or might this be a bug? This is all inside a DropdownMenu in case that matters.