feat(obj): add obj_id, class names, and dump support (#4536)

Signed-off-by: Xu Xingliang <xuxingliang@xiaomi.com>
This commit is contained in:
Neo Xu
2023-09-25 16:58:36 +08:00
committed by GitHub
parent 87d323f240
commit 27357d5139
61 changed files with 499 additions and 74 deletions

View File

@@ -40,7 +40,8 @@ const lv_obj_class_t lv_tabview_class = {
.width_def = LV_PCT(100),
.height_def = LV_PCT(100),
.base_class = &lv_obj_class,
.instance_size = sizeof(lv_tabview_t)
.instance_size = sizeof(lv_tabview_t),
.name = "tabview",
};
typedef struct {