In my current app, it's possible to navigate through pages with a drawer. But if I go to a second page, and the click to go to the first page (making this route history [FirstPage, SecondPage, FirstPage]) it recreate a new FirstPage.
I don't want to it to be recreated because there is a lot of process and it can take few seconds. I was wondering if it's possible to go to the first instance of the FirstPage instead of recreating a new one, and still have the same route history.
I hope it's clear enough to understand.