In Navigator, we can use .then
.
for eg:
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => XyzScreen(),
),
).then((value) => _someFuncion());
so is there any way to implement the same in go_router
?