csells / go_router

The purpose of the go_router for Flutter is to use declarative routes to reduce complexity, regardless of the platform you're targeting (mobile, web, desktop), handling deep linking from Android, iOS and the web while still allowing an easy-to-use developer experience.
https://gorouter.dev
442 stars 96 forks source link

make path matching case-insensitive while preserving case for inline + query params #54

Closed csells closed 2 years ago

csells commented 2 years ago

e.g.

GoRoute(path: '/family/:fid', ...)

should match /family/f2, /Family/f2 and /FaMiY/f2 while preserving the case of the param passed to the :fid argument.

csells commented 2 years ago

fixed in v1.1.3