Created
August 29, 2019 13:54
-
-
Save angelobelchior/45944227d3538d6b7e1ad4bbdcd72c96 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.AndroidSpecific; | |
// E no método OnAppearing... | |
protected override void OnAppearing() | |
{ | |
base.OnAppearing(); | |
this.On<Android>().SetToolbarPlacement(ToolbarPlacement.Bottom); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment