I am using shell in a project where I need to send data between contentpages. But the navigation stops when I add data. The pages navigate between each other when there is no data.
Run the repro project and try to send data between pages.
One page should pass data to another.
The pages does not navigate with data.
IDE:VSMac 2019
Affected Devices: Android and iOS
so, you're saying that the navigation doesn't work as soon you start using QueryAttributes ?
I can reproduce this. I wonder what's going on in this particular case...
Any progress?
@HobDev a couple things with the sample
1) none of the gotoasync's are awaited so navigation is never actually triggering
2) If you change the global routes to
Routing.RegisterRoute("secondpage", typeof(SecondPage));
Routing.RegisterRoute("data", typeof(FirstPage));
Then navigate like this
await Shell.Current.GoToAsync($"secondpage?wish=Hi");
it works fine
@PawelHaracz if you're having issues can you log an issue with a repro please?