I was previously developing my application in Xcode but decided to move over to Titanium to allow for Android development.
I\'m still getting used to Titanium so I\'m r
You can use this code to flip window in ios and android both.
Create two animation objects
var anim_minimize = Titanium.UI.createAnimation({width:0,duration:500});
var anim_maximize = Titanium.UI.createAnimation({width:320,duration:500});
and animate TabGroup on button click will create same effect as FLIP.
So
tabGroup.animate(anim_minimize);
setTimeout(function(){
tabGroup.animate(anim_maximize);
},500);
Try this code.This will generate same effect as flip animation both in iOS and android.
I hope this will help us.