Joe Meyer
Joe Meyer
@datoml - Stumbled across this problem myself for a client today and spent a good minute struggling with it. I have prepared a rudimentary example [here](https://github.com/JoeM-RP/xamvvm-MasterDetailSample) The core piece of...
@marufbd and @danielkatz - I just updated my sample project based the assets @daniel-luberda provided. See full source [here](https://github.com/JoeM-RP/xamvvm-MasterDetailSample). In order to prevent nested navigation bars as you described, I...
@marufbd If you don't care about preserving the navigation stack, you might be able to use `this.SetNewRootAndReset()` or this block from my original example: ``` var pageToPush = this.GetPageFromCache(); var...
As a workaround, you can add this block to the project `package.json` - worked for me after facing the same issue this week. ``` "engines": { "node": "18.19.1" }, ```