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
{{ message }}
This repository has been archived by the owner on Aug 8, 2024. It is now read-only.
As you can see, when I don't set the param I use a default value using the getParam function on the navigation API.
Problem
In the first same component, when I unmount it I want to restore the default value. BUT I don't want to set the param again with the default value because I am using getParam form that. I want to unset that param.
Setting the param to undefined does not work.
Solution
Maybe implement a unsetParams function to unset parameters from the navigation state.
The text was updated successfully, but these errors were encountered:
I searched a lot for this and didn't find anything regarding what I am about to write. Sorry if I missed any open issue about this.
Context
Let's consider the case where when I show some random component I set a param and I read that parameter in, let's say, the appbar.
Component setting the param:
Component reading the param:
As you can see, when I don't set the param I use a default value using the
getParam
function on thenavigation API
.Problem
In the first same component, when I unmount it I want to restore the default value. BUT I don't want to set the param again with the default value because I am using
getParam
form that. I want to unset that param.Setting the param to
undefined
does not work.Solution
Maybe implement a
unsetParams
function to unset parameters from the navigation state.The text was updated successfully, but these errors were encountered: