Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-23387] Windows: ScrollView is draggable even when content is small

GitHub Issuen/a
TypeImprovement
PriorityMedium
StatusOpen
ResolutionUnresolved
Affected Version/sRelease 5.3.0
Fix Version/sn/a
ComponentsWindows
Labelsn/a
ReporterKota Iguchi
AssigneeKota Iguchi
Created2016-05-17T07:20:33.000+0000
Updated2016-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();

Comments

  1. Gary Mathews 2016-07-14

    This may have been fixed in https://github.com/appcelerator/titanium_mobile_windows/pull/709

JSON Source