does anyone have a `Dialog` that sizes it's self b...
# compose-desktop
a
does anyone have a
Dialog
that sizes it's self based on it's contents?
tried a custom layout inside the Dialog that then sets the dialog size, but it uh... didn't work well lol
a
Use
Copy code
state = DialogState(
    width = Dp.Unspecified,
    height = Dp.Unspecified
)