Hi,
is there anyway I can disable scroll view pushing up. I tried locking scroll view if user tries to push up.
but it gets locked forever. I just want scroll view to pull down only.
local phase = event.phase if ( event.direction == "up" ) then scrollView:setIsLocked( true ) elseif ( event.direction == "down" ) then scrollView:setIsLocked(false) end
I’ve attached a video to demonstrate.