Currently, I am learning to integrate Flutter into native android and understanding FlutterView.
I have come to the point where I want transparency and also want to control the z-index of the FlutterView. But If I pass the FlutterSurfaceView(this, true)
class in the constructor then I can get transparency but it will bring FlutterView to the top of all android layers. And when I use FlutterTextureView(this)
in the constructor of FlutterView then I can make a Flutter view between other Android views but I can not control the transparency of the FlutterView. So I don't know how to control transparency and z-index both at the same time.