I've been using page parameters successfully for a while, but looking to deploy on web and wanted to make the url a little cleaner by leveraging go_router's ability to include the parameter in the path and not part of the query. Followed the documentation and Flutterflow's tooltip in the platform but get an error.
Flutterflow tooltip
"Edit the URL path for this page (which is used both in Web and for Deep Linking on Mobile), as well as whether this page is only viewable when the user is authenticated.
You can include a parameter as part of the route by prefixing it with ":". For instance, if you want your link to look like "/user/{USER UID}", and you have a parameter called "userId", you should use the route: "/user/:userId".
Please note that this would mean the "userId" parameter is required any time we navigate to this page."
I have a page parameter "cat" which normally looks like this as the url "/events?cat=weekend" but when I try to put it in the path in flutterflow as "/events/:cat" I get the error "missing param \"cat\" for /events/:cat". The "cat" parameter is set as required and has a default value so should never be 'missing'.
Also can we get go_router updated... it's at 7 and they're up to 10 now.