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 have searched and made sure there are no existing issues for the issue I am filing
I have searched the existing issues
Description
navigationWindow.openWindow(window) - doesn't show new window if navigationWindow was opened in another NavigationWindow's.
Expected Behavior
Window opened in nested navigation stack was opened (displayed on the screen).
Actual behavior
Window opened in nested navigation stack was not displayed on the screen.
Reproducible sample
constnestedNavWin=Ti.UI.createNavigationWindow({window: Ti.UI.createWindow({backgroundColor: "yellow"})});constmainNavWin=Ti.UI.createNavigationWindow({window: Ti.UI.createWindow()// but if pass `nestedNavWin` as window in creation time it works// window: nestedNavWin});mainNavWin.open();// open nested navigation_.delay(()=>{mainNavWin.openWindow(nestedNavWin);},1000);// window opened by nested navigation doesn't show_.delay(()=>{console.log("Must open red window");nestedNavWin.openWindow(Ti.UI.createWindow({backgroundColor: "red"}));},3000);
Steps to reproduce
One NavigationWindow opens another NavigationWindow (using openWindow() method).
Nested NavigationWindow tries to open one more window in stack.
Platform
iOS
SDK version you are using
12
Alloy version you are using
No response
The text was updated successfully, but these errors were encountered:
Hi there! I have reverted the change for now, as it still works on iOS 16+ (maybe it was just a beta issue back then) and also backported it to 12_5_X, so it will be included in the next release already! If you see issues again, please let me know and I can take a closer look into migrating the selectors.
I have searched and made sure there are no existing issues for the issue I am filing
Description
navigationWindow.openWindow(window)
- doesn't show new window if navigationWindow was opened in another NavigationWindow's.Expected Behavior
Window opened in nested navigation stack was opened (displayed on the screen).
Actual behavior
Window opened in nested navigation stack was not displayed on the screen.
Reproducible sample
Steps to reproduce
One NavigationWindow opens another NavigationWindow (using openWindow() method).
Nested NavigationWindow tries to open one more window in stack.
Platform
iOS
SDK version you are using
12
Alloy version you are using
No response
The text was updated successfully, but these errors were encountered: