Describe the bug LVGL V8.1 - lv_scr_load_anim works perfectly for the most part, but it can on ocation cause LVGL to freeze, which in the end makes the MCU reboot (crash). It happens most likely because the object that's being deleted is...
LVGL Version: tag 8.3.6 (my esp-idf version cannot compile tag 8.3.7) Platform: ESP32 Description: It is very strange that when I use lv_scr_load_anim(scr, LV_SCR_LOAD_ANIM_FADE_ON, 400, 0, true); to load the screen with a time of animat...
lv_obj_t*screen1=lv_obj_create(NULL,NULL);lv_obj_t*screen2=lv_obj_create(NULL,NULL);// add widgets to both screenslv_scr_load_anim(screen1,LV_SCR_LOAD_ANIM_FADE_ON,500,0, false);lv_scr_load_anim(screen2,LV_SCR_LOAD_ANIM_FADE_ON,500,0, false); ...