Nicolas Chaduc
08/03/2023, 8:43 AMAndroidView
to show a specific old view in my app. I have an issue, when I make my screen, I have a column with an header and box with my `AndroidView`inside it. On android 10 and lower i need to call ._clipToBounds_()
on my box. Because without it, I have dark content in front of my header. I think it is my AndroidView
that take header space outside my box. Did you have any explanation about that ?Nicolas Chaduc
08/03/2023, 8:46 AMColumn {
Header()
Box { -> need clipToBounds or header was hidden by black rectangle on android 10 and lower
AndroidView()
//some content to show in front of the android view
}
}
Timo Drick
08/03/2023, 10:27 AM