In Composable, how can we let some portion of the ...
# compose
r
In Composable, how can we let some portion of the child view to inflate outside the parent’s bound. Kindly help.
o
Compose do not apply any clipping by default. What is your use-case?
r
Worked using
.wrapContentSize(unbounded = true)
with Offset. Btw thanks @Oleksandr Balan