You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the README, it mentions that you can pass multiple parameters in the route using colons (:), but there are no examples provided for implementation. After multiple attempts, I found the implementation works as follows:
Declare the route:
Route("test/:paramA/:paramB"){ route in
// todo -
}
Use it as follows:
NavLink(to:"test/aaa/bbb"){
// todo -
}
The text was updated successfully, but these errors were encountered:
In the README, it mentions that you can pass multiple parameters in the route using colons (:), but there are no examples provided for implementation. After multiple attempts, I found the implementation works as follows:
The text was updated successfully, but these errors were encountered: