Searchbar isn't working...

backround = display.newRect( 0, 0, display.contentWidth, display.contentHeight ) backround:toBack() logo = display.newImageRect( "logo.png", 621 / 1.2, 129 / 1.2 ) logo:setReferencePoint( display.CenterReferencePoint ) logo.x = display.contentCenterX logo.y = display.contentCenterY button = display.newImageRect( "button.png", 25, 25 ) button.x = display.contentWidth - 20 button.y = 20 local searchbar searchbar = native.newTextField( 5, 5, display.contentWidth - 40, 30 ) searchbar.align = "center" searchbar.text = "331251" searchbar.userInput = searchDB function searchDB( event ) if ( event.phase == "ended" or event.phase == "editing" ) then searchtext = event.text end end searchbar:addEventListener( "userInput", searchDB ) button:addEventListener( "tap", function( event ) if ( logo ) then logo:removeSelf() end if ( image ) then image:removeSelf() end backround:toBack() image = display.newImageRect( "products/"..searchtext..".jpg", 375, 300 ) image:toFront() image:setReferencePoint( display.CenterReferencePoint ) image.x = display.contentCenterX image.y = display.contentCenterY return true end end )

Nervermind my searchbar isn’t doing what it should…

the image isn’t showing.

*push*

*push*