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
At the moment if you call dismiss on a screen that is not the top-most on the stack, strange things will happen.
I think the only solution here is for that to be an error.
i.e. if I push screens A, B, C on to the stack. Then I call B.dismiss() that should raise a DismissError (name TBD). Only C.dismiss() is valid, because it is a the top of the stack.
The text was updated successfully, but these errors were encountered:
At the moment if you call
dismiss
on a screen that is not the top-most on the stack, strange things will happen.I think the only solution here is for that to be an error.
i.e. if I push screens A, B, C on to the stack. Then I call
B.dismiss()
that should raise aDismissError
(name TBD). OnlyC.dismiss()
is valid, because it is a the top of the stack.The text was updated successfully, but these errors were encountered: