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.
28 lines
601 B
C
28 lines
601 B
C
#include "../../lv_examples.h"
|
|
#if LV_BUILD_EXAMPLES
|
|
#if LV_USE_RLOTTIE
|
|
|
|
/**
|
|
* Load an lottie animation from flash
|
|
*/
|
|
void lv_example_rlottie_1(void)
|
|
{
|
|
extern const uint8_t lv_example_rlottie_approve[];
|
|
lv_obj_t * lottie = lv_rlottie_create_from_raw(lv_scr_act(), 100, 100, (const void *)lv_example_rlottie_approve);
|
|
lv_obj_center(lottie);
|
|
}
|
|
|
|
#else
|
|
void lv_example_rlottie_1(void)
|
|
{
|
|
/*TODO
|
|
*fallback for online examples*/
|
|
|
|
lv_obj_t * label = lv_label_create(lv_scr_act());
|
|
lv_label_set_text(label, "Rlottie is not installed");
|
|
lv_obj_center(label);
|
|
}
|
|
|
|
#endif
|
|
#endif
|