Idea
[//]: It feels useful to be able to go to a screen without specifying the previous screen.
Problem description
[//]: One example of this would be a sheet that you want to be able to show from anywhere in the app and if you deep link to that sheet you'd want to just pop it up from whatever previous screen was open.
Apple Music has this behavior with its now playing bar that can pop up a sheet of the current song from anywhere in the app.
Considered solutions
[//]: I've currently hacked around this like this:
guard let screen = dataSource.path.current.last else { return }
navigator.go(to: EpisodeScreen(episode: episode), on: screen.id)