The following code will print “began scrolling” in the console if the user drags the scrollview in daily 1257, but in daily 1260 the listener never gets called.
local widget = require( "widget" ) -- for the scrollview local function scrollListener( event ) local phase = event.phase if "began" == phase then print("began scrolling") end return true end -- Create a ScrollView local scrollView = widget.newScrollView { top = 75, left = 20, width = 280, height = 300, topPadding = 75, bottomPadding = 50, listener = scrollListener, hideScrollBar = true, horizontalScrollDisabled = true, hideBackground = true, }