I'm having a little bit of trouble with Google Map widget.
In short, I have 3 pages, home page with bottom navigation bar, map page - basic stateful widget with GoogleMap in Scaffold body, and another page. Everytime I switch from map page too fast I'm getting this error and whole app freezes.
E/BufferQueueProducer( 9243): [SurfaceTexture-0-9243-14] dequeueBuffer: BufferQueue has been abandoned
To my understanding it boils down to the fact that map keep loading after SurfaceTexture destruction, like here: https://stackoverflow.com/a/22490648/11318016
I see there are ways to solve it on android, but I didn't find a way to handle it in flutter.