Shell navigation
That would be all you need to know about navigation if your app was just going to have the four pages that we’re accessing by the TabBar. Of course, you’ll almost certainly have more pages than that, and you’ll want a way to navigate from one page to another.
To see navigation from one page to another without using TabBar
, we’ll need another page to navigate to. Let’s create the BuddyDetailsPage, which we’ll navigate to from the Buddies page.
Once again, take the out-of-the-box page, but change Label
to say Buddy
Details Page
:
<?xml version="1.0" encoding="utf-8" ?> <ContentPage xmlns="http://schemas.microsoft.com/dotnet/ 2021/maui" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="ForgetMeNotDemo.View.BuddyDetailsPage" ...