Skip to content

Instantly share code, notes, and snippets.

@rblalock
Created March 26, 2012 21:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rblalock/2209773 to your computer and use it in GitHub Desktop.
Save rblalock/2209773 to your computer and use it in GitHub Desktop.
Scrollview / Keyboard bug
var win1 = Titanium.UI.createWindow({
title:'Tab 1',
backgroundColor:'#fff'
});
var tf = Ti.UI.createTextField({
hintText: 'text field',
borderStyle: Ti.UI.INPUT_BORDERSTYLE_ROUNDED,
height: 35,
width: 250
});
var scrollView = Ti.UI.createScrollView();
scrollView.add(tf);
win1.add(scrollView);
win1.open();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment