0
votes

I am currently trying to make a navigation page in a Xamarin Forms cross platform application that has a transparent/invisible navigation bar, but still shows a back button? Does Xamarin forms support any quick and easy way to do this?

2

2 Answers

0
votes

You could do either of these two:

  • Option 1 : Making a Custom renderer that will customize your nav bar
  • Option 2 : Hiding your navigation bar and then make your own
    navigation bar either stacklayout,grid, etc.

then set your navigation bar to transparent and the back button with a color

-1
votes

If you are using Navigation Page as your navigation paradigm, you can use:

NavigationPage.SetHasBackButton(this, false);

This will remove the back button from the navigation bar.