How to Set the Font for the Title in lv_menu_page_create (LVGL API)?

Hello, I’d like to know how to set the font for the title in the API lv_obj_t * lv_menu_page_create(lv_obj_t * parent, char * title); Thank you very much!

lv_obj_t* header = lv_menu_get_main_header( menu );
lv_obj_t* title_label = lv_obj_get_child_by_type( header, 0, &lv_label_class );
lv_obj_set_style_text_font( title_label, <YOUR_FONT>, LV_PART_MAIN );


Seems unavailable in lvgl8.3