Hey, I'm using a Dialog composable and am offsetti...
# compose
v
Hey, I'm using a Dialog composable and am offsetting it's content by some amount. Previously this would result in any portion of the offset content which is not in the dialog area to not be shown. However after this update it seem like this the content is still shown outside the dialog. I was just wondering if this is a bug or intended behaviour?
j
How are you doing the offsetting? Screenshot of result?
l
If you want to clip the content outside the dialog, you can just use
Modifier.clipToBounds()
v
Thanks, that fixes it