Example #1
0
 public void OnPopState(PopStateEvent e)
 {
     if (isDisplayingUI)
     {
         isDisplayingUI = false;
     }
 }
Example #2
0
        private void OnPopState(PopStateEvent evt)
        {
            // If state is null then it means it's firing on first load, which we never care about
            var path = (string)evt.State;

            if (path != null && path != currentPath)
            {
                Open(path, false, null);
            }
        }
Example #3
0
 public void OnPopState(PopStateEvent e)
 {
     stateStack.Pop();
     Console.WriteLine("Popped State: " + e);
 }