[AC-2370] Modal Windows - Status Bar Style
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | n/a |
Status | Resolved |
Resolution | Needs more info |
Resolution Date | 2013-09-20T09:53:26.000+0000 |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | Titanium SDK & CLI |
Labels | ios, mobile |
Reporter | Nikhil N |
Assignee | Shak Hossain |
Created | 2013-09-13T05:40:15.000+0000 |
Updated | 2016-03-08T07:41:24.000+0000 |
Description
-When opening a modal, the status bar style is set to the Light Content Style.-
-Upon closing a modal, the status bar style is not reverted back to the default/user set style.-
var navWin = Ti.UI.iOS.createNavigationWindow({modal: true}),
win = Ti.UI.createWindow(),
closeButton = Ti.UI.createButton({title: 'Close'});
win.setLeftNavButton(closeButton);
navWin.add(win);
closeButton.addEventListener('click', function(){
navWin.close({animated: true});
});
navWin.open();
The above is also true when using the following via a 3rd party module
Updated description.
Hello, Can you post more details? Thanks