How to navigate from Shell to other page creating the back button on top page? (Using Prism)

In my Shell i have the follow code:

>

<ShellContent Title="List"
              Icon="list.png">
      <local:ListPage />
</ShellContent>

Using prism without Shell i make this:

>

await NavigationService.NavigateAsync(""MyNamespace:///MenuPage/NavigationPage/ListPage");

How to do this using Shell?

Upvotes: 0

Views: 93

Answers (1)

Dan Siegel
Dan Siegel

Reputation: 5799

Prism does not support Shell at this time. Despite what Microsoft continues to try to tell people, the open source community pretty well is in agreement that Shell is not ready for prime time. This is why you do not yet see support for Shell in major projects, and why we have not yet added support for it.

Upvotes: 1

Related Questions