Hi,
Description
I put a keyboard in my lvgl screen and i enabled keyboard popover, but i want to change background color of popover, change font size of popover, change font color of popover and maybe change popover overall size for a better user readability.
What MCU/Processor/Board and compiler are you using?
ESP32-S3
What LVGL version are you using?
9.2.2
What do you want to achieve?
Change background color of popover, change font size of popover, change font color of popover and maybe change popover overall size.
What have you tried so far?
Only set a bigger font size.
Code to reproduce
kb = lv_keyboard_create(scr);
lv_obj_set_size(kb, LV_PCT(100), LV_PCT(35));
lv_obj_align(kb, LV_ALIGN_BOTTOM_MID, 0, 0);
lv_obj_add_flag(kb, LV_OBJ_FLAG_HIDDEN); // Inicialmente escondido
lv_keyboard_set_popovers(kb, true);
lv_obj_set_style_text_font(kb, &lv_font_montserrat_28, 0);
//lv_obj_set_style_text_color(kb, lv_color_black(), 0);
//lv_obj_set_style_background_color(kb, lv_color_white(), 0);