Skip to content

Instantly share code, notes, and snippets.

@demogar
Last active December 13, 2015 18:48
Show Gist options
  • Save demogar/4957791 to your computer and use it in GitHub Desktop.
Save demogar/4957791 to your computer and use it in GitHub Desktop.
// En components.js tienes algo asi:
exports.SexyButton = function(_title,_width) {
var args={
title: _title,
width:_width?_width:'110dp'
};
return Ti.UI.createButton(args);
}
// Y luego en tu archivo haces algo como:
var ui = require('components');
var myButton = ui.SexyButton("My Title", "100px");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment