xaowang

Results 13 comments of xaowang

@Akery I added a function call that solve this problem, like this ``` lv_obj_t* test = lv_label_create(lv_scr_act()); lv_label_set_text( test, "asfsdfasdfasdfasdfasdfashcvhhghgfhgfhgfhgfhfghfhfjhfhjfjhfghfjhfjhgtye" "drtdcvkjhvjhvkjhvgydcydjghjvbjkfyufukyfhbkjhlhuilfgvhykfuyukdfasdfasfa" "sfasfsdgasdfhjlkhajkfhlasjkhflksjhfsafsadfasdfadsfasdfasdfasdfasdfadsf" "asdfaasdfasdfdasdfasdfffasdfa"); lv_obj_set_width(test, 200); lv_obj_set_style_max_height(test, 340, LV_PART_MAIN); lv_obj_update_layout(test); lv_label_set_long_mode(test,...

> * Once we are updating the API let's consider radial and conic gradients too. Sounds good, but I'm not very familiar with radial and conic gradients. Let's implement linear...

> Could you open an issue to discusse the gradient API in a more visible place? Ok, I open an issue [5527](https://github.com/lvgl/lvgl/issues/5527) to discuss the gradient, let we make it...

> I think this implementation is incorrect, 'fill matrix' already contains the function of adjusting the drawing gradient. you just do like that: > > ``` > lv_vector_dsc_identity(ctx); > >...

> Thank you for opening this issue. > > `linearGradient id="paint0_linear_13691_50971"` uses absolute coordinates which is not the convenient in case of widgets. However, setting larger gradient areas can be...

> Do we know a use case for `absolute coordinate`? There are many cases using `absolute coordinate` in svg when desing. Here is a simple example: ![image](https://github.com/lvgl/lvgl/assets/32351888/13b857a0-956d-4825-a75e-fb413ca52357) And, This is...

> * Platform Arm > * OS nuttx > > Compiling on the Arm platform, `uint` will be redefined, and error occur. > > * `typedef unsigned int uint;` in...

> not sure if i can create a patch for this . usually unit is not defined in standard headers . so one option is just include types.h and comment...

> @xaowang96 , have pushed a patch #506 for the same. Thanks.