0

Hi,

as you can see in the attached picture I am not able to visualize the ToolbarItems both on IPhone and on Android emulators.

Any idea about the reason?

Xamarin Studio Community 6.0.1

Android version 6.0.

iPhone version 9.3.

Thanks

Valerio

Xamarin.forms ToolbarItems

Valerio C
  • 37
  • 7

1 Answers1

0

Use NavigationPage to get access to your toolbar items:

File App.xaml.cs

public App()
{
    InitializeComponent();

    MainPage = new NavigationPage(new ToolbarDemoPage());
}
Taras Shevchuk
  • 326
  • 3
  • 14