With Xamarin forms, Android updates the Title of a ContentPage but not iOS.
public class MapPage : ContentPage
{
public MapPage(string title)
{
Title = title; <--- works in iOS and Android
}
public void UpdatePage(string title)
{
Title = title; <--- works only in Android
}
}