You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
277 B
C
13 lines
277 B
C
2 years ago
|
#include "../../lv_examples.h"
|
||
|
#if LV_USE_SPINNER && LV_BUILD_EXAMPLES
|
||
|
|
||
|
void lv_example_spinner_1(void)
|
||
|
{
|
||
|
/*Create a spinner*/
|
||
|
lv_obj_t * spinner = lv_spinner_create(lv_scr_act(), 1000, 60);
|
||
|
lv_obj_set_size(spinner, 100, 100);
|
||
|
lv_obj_center(spinner);
|
||
|
}
|
||
|
|
||
|
#endif
|