The purpose of the go_router for Flutter is to use declarative routes to reduce complexity, regardless of the platform you're targeting (mobile, web, desktop), handling deep linking from Android, iOS and the web while still allowing an easy-to-use developer experience.
I am currently facing the issue, that (if RAM is low etc.) Android may kill the Flutter Activity. I can persist the state of my widgets etc. with no problem, but the current route history always is lost and the app starts again at the initial route.
Is there some way to persist the current stack of the router?
I am currently facing the issue, that (if RAM is low etc.) Android may kill the Flutter Activity. I can persist the state of my widgets etc. with no problem, but the current route history always is lost and the app starts again at the initial route.
Is there some way to persist the current stack of the router?