I am pretty much new to Xamarin forms. I am trying to add toolbar items to content page.
I am using IPAD Air as deployment device and used sever iPhone/ipad simulat
Your ToolbarItems will not show if your app does not have a Toolbar. The simplest way to add one is to wrap your page in a NavigationPage
public static Page GetMainPage () { return new NavigationPage(new SamplePage ()); }