lukepighetti / fluro

Fluro is a Flutter routing library that adds flexible routing options like wildcards, named parameters and clear route definitions.
https://pub.dev/packages/fluro
MIT License
3.66k stars 416 forks source link

All previous view loaded when direct access via url #266

Open Velliane opened 2 years ago

Velliane commented 2 years ago

Hello there,

I have a small issue, I don't really know if it's a normal behavior or not. I have different handler define like this: -"/" -"/category" -"/category/id"

Users can access to "/category/id" directly with a given url, but at the first launch of the app, end each time tab is refreshed, it seems that the view from "/category" is also build (and the call to the different web service are made too, unfortunately...)

Thanks