In my flutter app. I am using google_maps_plugin . The link is https://github.com/flutter/plugins/tree/master/packages/google_maps_flutter . I want to fix the m
google_maps_plugin
Use Stack and IgnorePointer to ignore touches on your widget
Stack( children: [ GoogleMap( .... ), Center( child: IgnorePointer( child: ... ) ) ] )