@titanium/turbo
Version:
🚀 Turbo is the awesome framework for turbo charging your Titanium cross-platform native mobile app development!
27 lines (23 loc) • 526 B
JavaScript
var _ = require('alloy/underscore')._;
exports.createView = function(args) {
args = args || {};
var specialStyle = _.extend({
backgroundColor: '#111',
height: '50dp',
width: '50dp',
top: '10dp',
left: '10dp'
}, args);
return Ti.UI.createView(specialStyle);
};
exports.createMassiveGreenView = function(args) {
args = args || {};
var specialStyle = _.extend({
backgroundColor: '#0f0',
height: '200dp',
width: '200dp',
top: '10dp',
left: '10dp'
}, args);
return Ti.UI.createView(specialStyle);
};