[TIMOB-23387] Windows: ScrollView is draggable even when content is small
GitHub Issue | n/a |
---|---|
Type | Improvement |
Priority | Medium |
Status | Open |
Resolution | Unresolved |
Affected Version/s | Release 5.3.0 |
Fix Version/s | n/a |
Components | Windows |
Labels | n/a |
Reporter | Kota Iguchi |
Assignee | Kota Iguchi |
Created | 2016-05-17T07:20:33.000+0000 |
Updated | 2016-07-14T19:27:10.000+0000 |
Description
ScrollView
can be draggable (scrollable) even when scrollview content is small enough to fit ScrollView
on Windows. On iOS/Android it's locked.
var win = Ti.UI.createWindow({ backgroundColor: 'green' });
var view = Ti.UI.createScrollView({
backgroundColor: 'gray'
});
var label = Ti.UI.createLabel({text:'Hello, World!'});
view.add(label);
win.add(view);
win.open();
This may have been fixed in https://github.com/appcelerator/titanium_mobile_windows/pull/709