I have a `LazyColumn` inside an `AlertDialog` and ...
# compose
s
I have a
LazyColumn
inside an
AlertDialog
and the title and the buttons of the dialog go outside the screen when the content in
LazyColumn
is large enough. Is there a way to have some padding around the dialog so the title and the buttons are always visible?
Modifier.padding
on the
AlertDialog
doesn't work
z
Have you tried using
BoxWithConstraints
?
s
Nope I'll try