Created
August 29, 2019 13:59
-
-
Save angelobelchior/621f28bff22d43f346fdfe5e5f09c540 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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