//This is the current window var win = Ti.UI.currentWindow; //Vertical scrollView var scrllView = Ti.UI.createScrollView({ contentHeight: Ti.Platform.displayCaps.platformHeight, top: 0, layout: 'vertical' }); //Scrollview added to window win.add(scrllView); //TextArea var bottomTxtField = Ti.UI.createTextArea({ bottom : 20, suppressReturn : false, height :200, width :100, font : {fontSize : 16}, color : 'black', textAlign : 'left', borderWidth : 2, borderRadius : 5 }); //add the TextArea to the scrollview scrllView.add(bottomTxtField);