For setting the stroke width and stroke colour of vector objects (display.newRect, display.newRoundedRect, and display.newCircle) in Corona SDK, see the example given below,
local urRectangle = display.newRect(130, 110, 70, 70) urRectangle:setFillColor(255, 255, 255) urRectangle:setStrokeColor(250, 130, 200) --setting the stroke color urRectangle.strokeWidth = 7 --setting the stroke width




