Skip to content

Instantly share code, notes, and snippets.

@himalay
Forked from FokkeZB/index.xml
Last active August 29, 2015 14:17
Show Gist options
  • Save himalay/79faf6330dc029f71754 to your computer and use it in GitHub Desktop.
Save himalay/79faf6330dc029f71754 to your computer and use it in GitHub Desktop.
Need a Window on IOS but a View on Android in Alloy?
<Alloy>
<Window module="xp.ui">
<Label>Hello World</Label>
</Window>
</Alloy>
exports.createWindow = function(args) {
return Ti.UI[OS_IOS ? 'createWindow' : 'createView'](args);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment