what is the eventual way to display a popup "panel...
# compose-desktop
d
what is the eventual way to display a popup "panel" under/beside an arbitrary @Composable. There once was a DropdownPopup but it was removed as I read. is there a "current" solution to do an arbitrary Popup directly beside a @Composable ?
k
Do you want it to fit in the window bounds, or do you want it to go outside of the window bounds?
d
inside window bounds
k
Popup
composable is still there
d
you happen to have a pointer to some example code?
d
just out of curiosity on you first question in this thread here: is there a popup, that can be placed outside the window???
k
In the desktop world you would use a combination of
JWindow
and
ComposePanel
d
ah, going down the swing road
k
Same in Android - popup is expected/actual with
AndroidPopup
using the platform's APIs (window manager, etc)