Mateus Henrique
Mateus Henrique
This issue seems related to xamarin/Xamarin.Forms#9906 There is a PR in review to fix it: xamarin/Xamarin.Forms#9933
Thanks! I'll be waiting for this.
I had the same issue and the solution I found was to set `disableBackButton` to false in `LoaderOverlay`: ``` LoaderOverlay( disableBackButton: false, child: Scaffold(), ); ``` Or calling `context.router.popForced()` instead...
I just updated the issue to include the reproduction project.