I have a problem. I created a NavigationPage with a TabbedPage in it, by using the following code:
TabbedPage tabbedPage = new TabbedPage();
tabbedPage.Children.Add(new productPage{ Title = "Products" });
tabbedPage.Children.Add(new setPage{ Title = "Sets" });
App.Current.MainPage = new NavigationPage(tabbedPage);
But now I want at the bottom of the navigation page a bar (stacklayout) with a total amount selected, so this bar doesn't need to be set in the TabbedPage, but in the NavigationPage, because it's the total amount of both pages together selected.
How can I add that bar to my NavigationPage at the bottom and still have the TabbedPage above that bar?
I want at the bottom of the navigation page a bar (stacklayout) with a total amount selected
? Can you please to add a picture or add more detailed description to make it clear? – Jack Hua