I finally found a working solution.
To help anyone else experiencing the same sudden scroll release stop when adding content to the view, here is how i did it.
Go to https://github.com/coronalabs/framework-widget and download the widget_scrollview.lua file from within the widgetLibrary folder.
Comment out or remove line 438, which looks like this: “self:scrollToPosition( { x = origX, y = origY, time = 0 } )”
Save the lua file and copy it to the root of your project.
Scrolling should now work perfectly without changing anything in your own lua code.
I am not entirely sure why this works, but I am guessing that when the widget code looks foor lua files, it defaults to the root directory, and as such overrides the old file with the new edited one.
This problem/bug needs to be fixed by Corona with a simple deactivate option to accommodate all users and uses.
I’ve spent almost a week in frustration trying to work around and/or fix this, and frankly, official support could have been better.
Anaqim
UPDATE!!!
It seems this is not fixed after all and I am at loss what to do.
The above solution works with a win32 build but not in the simulator, nor on android.
Ideas?