I'm looking for some ideas or advice, I have been ...
# multiplatform
b
I'm looking for some ideas or advice, I have been using the new type-safe navigation API and it is fantastic. However, I want to target the browser with wasm and I'd like to support navigation paths via web urls. I thought about adding
Route.toPath(): String
and
String.toRoute(): Route
functions but I wonder if it would be more direct to just use strings for my paths in my navgraph. I'm curious how other people have approached this.