Is it possible to proportionally scale screens or components created in LVGL PRO Editor to different resolutions?
This would be useful because the editor automatically generates everything using pixel values, and we need to deploy the same UI across different screen sizes without recreating it for each resolution.
LVGL PRO Editor does not support proportionally scaling whole screens/components to different resolutions in terms of UI design, but at runtime you can make LVGL objects adapt by using responsive sizing such as lv_pct() for width and height (and layouts like flex/grid) so the UI scales correctly across displays.
Using lv_pct() means LVGL will calculate the final pixel sizes at runtime, based on the current display resolution and the parent object size. It’s not a one-time conversion either: whenever the parent container changes size (rotation, resize, layout refresh, etc.), LVGL re-evaluates the percentage values and updates the child objects accordingly.