Support for the Twitter-like splash-screen library CBZSplashView
in Titanium. Thanks to @callumboddy for that awesome library!
var Splash = require('ti.splashview');
var win = Ti.UI.createWindow({
backgroundColor: 'yellow'
});
var splashView = Splash.createSplashView({
image: "appc-logo.png",
fillColor: "blue"
});
win.addEventListener('focus', function() {
setTimeout(function() {
splashView.startAnimation();
},1000);
});
win.add(splashView);
win.open();
Hans Knoechel (@hansemannnn / Web)
Apache 2.0
Code contributions are greatly appreciated, please submit a new pull request!