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
I was looking into your code on open method and I think you may be confuse on this line:
if(navigationWindow===null||drawer)
It will be conflicted with android... cause on android we don't want to open just another window in front of drawer, we want to add it as a child of our home window
if we pass a new window to be home's child and keep drawer, these line:
if(drawer){
...
// Reset our local stack refrancewindows=[];}
Will reset our stack... it shouldn't reset our window's child stack because we want to use the drawer on the childs too, not only on home window. We still need to set it as centerWindow, but we can't reset the stack, because when we close our child, it won't will bring our home back.
I don't know if you understand what i'm saying or I understood wrong the logic to use drawer.
I was looking into your code on
open
method and I think you may be confuse on this line:It will be conflicted with android... cause on android we don't want to open just another window in front of drawer, we want to add it as a child of our home window
if we pass a new window to be home's child and keep drawer, these line:
Will reset our stack... it shouldn't reset our window's child stack because we want to use the drawer on the childs too, not only on home window. We still need to set it as centerWindow, but we can't reset the stack, because when we close our child, it won't will bring our home back.
I don't know if you understand what i'm saying or I understood wrong the logic to use drawer.
maybe a look into this Android's drawer example should explain
Thanks =)
The text was updated successfully, but these errors were encountered: