Hi Tomáš, I have exactly the same symtoms with my iOS app. Fixed it with a custom renderer for MapView: [assembly: ExportRenderer(typeof(Esri.ArcGISRuntime.Xamarin.Forms.MapView), typeof(MyMapViewRenderer))] namespace xxx.Forms.iOS { public class MyMapViewRenderer : MapViewRenderer { protected override bool ManageNativeControlLifetime => false; } } This is enough to make my app work as expected! Maybe this can help you too. regards, Hannes
... View more