Skip to content

Instantly share code, notes, and snippets.

@angelobelchior
Created August 29, 2019 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angelobelchior/621f28bff22d43f346fdfe5e5f09c540 to your computer and use it in GitHub Desktop.
Save angelobelchior/621f28bff22d43f346fdfe5e5f09c540 to your computer and use it in GitHub Desktop.
// Adiciona-se o namespace
using Xamarin.Forms.PlatformConfiguration.iOSSpecific;
// E no método OnAppearing...
protected override void OnAppearing()
{
base.OnAppearing();
this.On<iOS>().SetUseSafeArea(true);
this.On<iOS>().SetPrefersLargeTitles(true);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment