Hi,
Is it only me, but I am unable to add text or rect inside a widget.newScrollView ?
For example (this is a code extract. group is good, widget is included, etc) :
local scrollView = widget.newScrollView
{
top = 100,
left = 10,
width = 300,
height = 400,
scrollWidth = 600,
scrollHeight = 800,
}
group:insert( scrollView )
local text = display.newText( scrollView, “this is a test”, 0,0, nil, 20 )
text:setFillColor( 0,0,0)
The text will never scroll and will not be positioned properly inside the scrollview.
This is happening with build 2100 and 2155 (just try the latest build).