I am using
GoRouter.of(context).pop(); to navigate from my Settings page to the previous screen and it works fine.
But if I use it on another screen to navigate back it sends me to the main screen.
This is how it looks like in both cases:
onPressed: () {
GoRouter.of(context).pop();
}