Having the same issue here on LVGL 9.2.2. Everything works once I remove the const from the const keyword from lv_style_const_prop_t
Working fine enough for now, but it doesn’t look like RAM is actually being saved using this method because I tried defining the style normally within my display and that ended up saving a bit of RAM over using lv_style_const_prop_t
So just defining the style normally would save 43 bytes of RAM. I’m having issues when defining the style normally as a global variable, so I can’t run a more accurate test until I get that resolved.
Still definitely better to use this in the long run since I’ll have multiple display functions using this label style, but individually, it doesn’t look like it’s working that way