I'm using the .net Maui framework for Android development and realized that when you navigate to a page, it creates the page, then hangs on to the page instance. If you navigate to the page again, it re-uses the same page instance.
In the past, with Xamarin.Forms, I have found that with some controls, re-using a page is problematic. I do not know if this is the case using Maui, but want to avoid the situation to be sure.
I haven't found any settings that let me change the default behavior.
Is there a way to configure Maui to create each page every time you navigate to the page?
Example repo: https://github.com/kkohler2/MauiShellReuseTest