Why does the screen turns black when I used the composer module???
local composer (“composer”)
local scene = composer.newScene();
local background
function scene:create(event)
local sceneGroup = self.view
background = display.newRect(0,0,880,1000)
background:setFillColor(255, 255, 255)
sceneGroup:insert(background)
end
scene:addEventListener(“create”, scene);
is this happening all to users who apply composer module or is just mine?