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.
19 lines
497 B
C
19 lines
497 B
C
2 years ago
|
#include "../../lv_examples.h"
|
||
|
#if LV_USE_IMG && LV_BUILD_EXAMPLES
|
||
|
|
||
|
|
||
|
void lv_example_img_1(void)
|
||
|
{
|
||
|
LV_IMG_DECLARE(img_cogwheel_argb);
|
||
|
lv_obj_t * img1 = lv_img_create(lv_scr_act());
|
||
|
lv_img_set_src(img1, &img_cogwheel_argb);
|
||
|
lv_obj_align(img1, LV_ALIGN_CENTER, 0, -20);
|
||
|
lv_obj_set_size(img1, 200, 200);
|
||
|
|
||
|
lv_obj_t * img2 = lv_img_create(lv_scr_act());
|
||
|
lv_img_set_src(img2, LV_SYMBOL_OK "Accept");
|
||
|
lv_obj_align_to(img2, img1, LV_ALIGN_OUT_BOTTOM_MID, 0, 20);
|
||
|
}
|
||
|
|
||
|
#endif
|