I just started using Compose Desktop and I don't s...
# compose-desktop
l
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.
Ok it seems to have actually been the DropdownMenu. I replaced it with a Popup but now it does not have a shadow and rounded corners and onDimissRequest ("Executes when the user clicks outside of the popup") does not work
with a workaround i now have a Popup() but it has no animation