The width and the height of an object can be set easily as well: ```c lv_obj_set_width(obj, 200); lv_obj_set_height(obj, 100); lv_obj_set_size(obj, 200, 100); //Or in one function ``` Percentage values aer calc
version : lvgl 8.2.0 environment : codeblocks sample code like : lv_obj_t * obj = lv_obj_create(lv_scr_act()); lv_obj_set_pos(obj, 500, 500); //lv_obj_set_width(obj, 300); //lv_obj_set_height(obj, 500); lv_obj_set_size(obj,300, 300); pri...