On Github lucassp / timodev
Autmatisering & Advies BV is a company supporting customer relations and business processes for a little over 20 years.
The Timisoara office has been established in 2008 and has grown ever since.
The team is focused on R&D of all the projects in the company.
Hybrid development, deployment and integration platform to develop, deploy and manage SaaS and On Premise applications.
Language: JavaScript
Products: Stb CRM, including all the modules
One of the best PHP frameworks out there that suits our needs very well
Languages: PHP, HTML, CSS, JavaScript and a bunch of JavaScript libraries.
Products: Worknets.com, Stb CRM Web Registrations module
The greatest publishing platform, well suited for small to medium websites.
Languages: all of the above plus some nice designs
Products: websites
Native UI, animations, gestures, etc.
Camera, video camera, audio/video playback/streaming
Geo-location, compass, native maps
Facebook, Twitter, YQL, native email and address book access
SQLite database storage, lightweight key-value pair storage, web services
Push notifications
Create, test, publish your apps using the same tools across platforms.
iOS development is still limited to MacOS and Xcode.
Modules can be native or JavaScript.
You can get them on appcelerator marketplace too.
Ti.UI.backgroundColor = "#ffffff"; var win = Ti.UI.createWindow(); var label = Ti.UI.createLabel({ text: "Hello World!" }); win.add(label); label.addEventListener('click', function(e) { alert(this.text); }); win.open();
function MyWidget(opts) { var self = Ti.UI.createView(opts); // more code here return self; } module.exports = MyWidget;
var MyWidget = require('MyWidget'); var widgetInstance = new MyWidget(opts);
exports.isAndroid = function() { return Ti.Platform.osname === 'android'; }
var Utils = require('Utils'); alert(Utils.isAndroid());