Skip to content

Instantly share code, notes, and snippets.

@dezinezync
Last active December 22, 2015 12:59
Show Gist options
  • Save dezinezync/6476085 to your computer and use it in GitHub Desktop.
Save dezinezync/6476085 to your computer and use it in GitHub Desktop.
NavWindow example
var win =Ti.UI.iOS.createNavWindow({
width: Ti.UI.FILL,
height: TI.UI.FILL
});
win.open({
modal:true
})
@FokkeZB
Copy link

FokkeZB commented Sep 7, 2013

var win = Ti.UI.createWindow({
    backgroundColor: 'blue',
});
var navWin = Ti.UI.iOS.createNavigationWindow({
    modal: true,
    window: win
});
navWin.open();

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment