Hello
I’ve been using Outlaw with Corona for some time now and haven’t run into any problems until I tried loading in a widget. I’m wondering if there was some step I missed in setup that helped access the widget library or if it’s something else. Here is a snippet of the code that I’m working on,
I’m following the MasteringCoronaSDK tutorial for tableView and I’m at this step:
local widget = require ( "widget" ) local topOfScreen = display.statusBarHeight --top of usual area local list = nil local RecData = { --huge data library of stuff} local function setup() local bg = display.newRect(0, topOfScreen, display.contentWidth, display.contentHeight - topOfScreen) bg:setFillColor(0, 155, 73) list = widget.newTableView { top = topOfScreen + 10, --where do rows start? height = 304, --length of the list } end local function showRecs() local function onRowRender(event) end --onRowRender local function rowListener(event) end --rowListerner for x = 1, #RecData do list:insertRow{ onRender = onRowRender, listener = rowListener } end end --showRecs setup() showRecs()
The list box isn’t showing up when I press launch like it does in the video. I’m also getting an error stating that “top” (in the tableView setup) is a nil value, leading me to believe that it isn’t loading the tableView widget.
Any help on this would be greatly appreciated. 
EDIT: I’m using Outlaw Lite v 3.0.14 (19)