-
Notifications
You must be signed in to change notification settings - Fork 383
Open
Labels
Description
Currently has ToString() which requires:
var path = PathBuilder.Create(BackStackBehaviors.Clear, nameof(MyView)).ToString();
await NavigationService.NavigateAsync(new Uri(path, UriKind.Relative));This works and should not be changed.
The desired ADDITIONAL syntax would be:
var path = PathBuilder.Create(BackStackBehaviors.Clear, nameof(MyView)).ToUri();
await NavigationService.NavigateAsync(path);It will be difficult to remember the UriKind.Relative part anyway.
Reactions are currently unavailable