Description
Setting fullscreen on a window on creation has no effect when the window is opened
var window = Ti.UI.createWindow({ backgroundColor: 'gray'}),
win2 = Ti.UI.createWindow({backgroundColor: 'green', fullscreen: true}),
btn = Ti.UI.createButton({ title: 'open fullscreen', bottom: 0, left: 0, width: '50%' });
window.add(btn);
btn.addEventListener('click', function(){
win2.open();
});
window.open({fullscreen: false});
Steps to reproduce
Add the code above to an existing app.js
Build for Windows
Tap the button
Actual
Application does not fullscreen when button is clicked
Expected
Application should fullscreen when button is clicked
https://github.com/appcelerator/titanium_mobile_windows/pull/1060
[~kiguchi] Master is merged. Waiting for 6_2_X.
Merged to 6_2_X https://github.com/appcelerator/titanium_mobile_windows/pull/1079
Verified in 6.2.0.v20170821001430, closing ticket