I am navigating from home to test screen using flutter gorouter
like this.. from a button in modal bottom sheet in homescreen:
context.pushNamed(
Destination.viewSingleTest,
extra: test
);
Now in test screen after completion, I want to go back to home screen while reloading the content/screen.
context.go(Destination.bottomNav);
Problem is:
It doesn't reload the page, it just goes back to the modal sheet been opened in the home screen.
I want to go to that page and reload the screen