I already have created a flutter android application and works fine. I am using google_maps_flutter plugin to display the map with markers. After when trying to run my app to ios, i encountered a strange problem. It runs as i expected but the bottom right navigation toolbar is not displayed as on android device. I have seen how to disable it only from this question :
Flutter Google Maps remove navigation button at bottomRight on marker tap
Marker(
markerId: MarkerId('firstMarker'),
draggable: false,
icon: BitmapDescriptor.fromBytes(_markerIcon),
infoWindow: InfoWindow(
title: f.name,
snippet: f.time,
onTap: (){
displayInfo(f, context);
}
),
position: LatLng(f.lat, f.lon));
Is this caused from flutter or i must do some changes on my source code?