Flutter – How to clear all routes and push new one with new state [go_router]
When looking for on how to clear all routes and replace with a new one, all the solutions propose something like this void clearStackAndReplace(String path, Object? extra) { while (canPop() == true) { pop(); } pushReplacement(path, extra: extra); } But…