I got the problem when I try to navigation page. I want to user Navigation from cart page to home page and cannot back to cart page. But I got the error like this:
type 'String' is not a subtype of type 'Route<Object?>' in type cast
I have try a lot to fix the code, but it didn't work.
The code:
TextButton(
onPressed: () {
Navigator.pushNamedAndRemoveUntil(context, '/home', (route) => false);
},)
How to fix it?