https://kotlinlang.org logo
#compose
Title
# compose
s

Se7eN

02/15/2021, 3:09 PM
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

zoha131

02/16/2021, 4:35 AM
Have you tried using
BoxWithConstraints
?
s

Se7eN

02/16/2021, 9:38 AM
Nope I'll try
5 Views