Hi,
I am building a multi-platform (iOS, Android) app using Titanium to complement a website.
On the website I allow my users to drag and drop images onto a canvas, create a layer, move the images around and once they are done animate those the movements.
I do that by cycling through the drag and drops collected in an array and using translate3D to move the objects to the next layers xCoordinate and yCoordinate
[layer1, dropped_image1, x coord, y coord] [layer2, dropped_image1, x coord, y coord]
I believe I can recreate this in Titanium using a WebView and local html, css and javascript content, but just having read the documentation I am a little concerned about performance.
I'd like to investigate using native components instead and I am looking for a point in the right direction for what native components I could use to do th e same?
Thanks, James