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
We would like an event that triggers when the first page is pushed onto the stack and when the last page is removed from the stack (including when the stack is cleared), so that we can update the state of the returned tab.
Additional context
publicclassStackChangedEventArgs:EventArgs{publicintCount{get;set;}// latest length of stackpublicstringAction{get;set;}// push,pop,clear?publicstringAbsolutePath{get;set;}}publicEventHandler<StackChangedEventArgs>?StackChanged;PageStackNavController.StackChanged+=OnPageStackNavControllerStackChanged;
The text was updated successfully, but these errors were encountered:
Proposal and motivation
We would like an event that triggers when the first page is pushed onto the stack and when the last page is removed from the stack (including when the stack is cleared), so that we can update the state of the returned tab.
Additional context
The text was updated successfully, but these errors were encountered: