Type Function Library widget.* Return value none Revision 2017.3060 Keywords widget, theme, set theme See also widget
Use this function to set the overall theme of the widget library. This should be called immediately after you require()
the widget library.
widget.setTheme( theme )
String. The theme name. Valid options include:
"widget_theme_android_holo_dark"
"widget_theme_android_holo_light"
"widget_theme_ios7"
"widget_theme_android"
(legacy)"widget_theme_ios"
(legacy)local widget = require( "widget" ) -- Set a default theme widget.setTheme( "widget_theme_android_holo_light" )