2021-08-04 04:03 PM
I setup a scroll list with particular template with n items. Since the items currently fit to the size of container, then I want to disable vertical drag.
I did this :
scrollList.allowVerticalDrag(false);
scrollList.invalidate()
where scrollList is an instance of class touchgfx::ScrollList
But my list can still be dragged vertically. Anything I did wrong?