Skip to content

Instantly share code, notes, and snippets.

@madmanlear
madmanlear / scalableImage.js
Created February 24, 2011 14:50
A simple scalable image view in Titanium
var scrollView = Titanium.UI.createScrollView({
contentHeight: 'auto',
contentWidth: 'auto',
maxZoomScale: 100,
minZoomScale: 1,
showHorizontalScrollIndicator: true,
showVerticalScrollIndicator: true,
top: 0
});