Widgets 2.0 Button Images not loading on device

Hello,

I am creating a button as follows:

playBtn = widget.newButton{ label="Play Now", labelColor = { default={255}, over={128} }, width=154, height=40, onRelease = onPlayBtnRelease } playBtn:setFillColor( 34, 140, 35 )

On the Corona Simulator, the button appears as follows:

GgXW8gI.jpg?1

However, on a test Android device, it looks as follows:

fs5kiE2.jpg

Does anyone know why the button images (seen in simulator) are not being loaded on the device?

Thank you

Widgets use theme files.  On Android it uses a theme file that makes buttons more Android like.  You can set your theme specifically to the IOS theme to get your rounded buttons.  See:

http://docs.coronalabs.com/api/library/widget/setTheme.html

Thanks for the prompt response. Problem solved!

Widgets use theme files.  On Android it uses a theme file that makes buttons more Android like.  You can set your theme specifically to the IOS theme to get your rounded buttons.  See:

http://docs.coronalabs.com/api/library/widget/setTheme.html

Thanks for the prompt response. Problem solved!