auto_route_library
auto_route_library copied to clipboard
Paths not working on Wasm Web App
I've tried to build my Flutter web app with WASM. Everything seems to work and also navigating to routes works seamless. The only issue I have is that paths that I input in the browser are completely ignored and won't redirect me to the specific route. Building with html or canvaskit I didn't had this issue.
I am defining my routes like this:
AutoRoute(page: Test.page, path: "/test/:id")
Does anyone else has similar issues?