I, am utilizing google_map_flutter in my app to point out google map. It really works nice on Android, however in iOS app crashes once I open the web page the place I combine the Google Map.
The console reveals the this error.
Thread 1: “-[__NSCFBoolean objectForKey:]: unrecognized selector despatched to occasion 0x7fff8a4b94f8”
terminating with uncaught exception of kind NSException
I Additionally allow Map SDK for Android & Map SDK for iOS and generate the important thing.
Container(
width: double.infinity,
top: double.infinity,
baby: GoogleMap(
initialCameraPosition: CameraPosition(
goal: LatLng(10, 10),
zoom: 11.0,
),
),
)