Has anyone affected by <https://issuetracker.googl...
# compose
j
Has anyone affected by https://issuetracker.google.com/issues/182387688 found a workaround? It seems to me this pretty much makes
AndroidView
useless in 99% of its use cases.
1
😞 2
🚫 1
m
Hi, as a workaround, you can try disabling clipChildren on the parent of the 
View
 : 
AndroidView(factory = {...}) { (it.parent as ViewGroup).clipChildren = false }
Let me know if this helps!
j
Nope, unfortunately that didn’t help in my case (
AndroidView
inside a
BottomSheetScaffold
’s
sheetContent
).
c
Didn't work for me either. 😭
m
I commented at the bug with a new workaround that should work this time, let me know if it works this time. Thanks for trying and sorry for the inconvenience here!
🙌 1
c
@Mihai Popa updated with your change... building now... 🤞
@Mihai Popa it worked! Thank you so much! Also... that's a reallly really nice way to solve the problem. I added the composable, then just did a global search and replace and voila!