Style.get_color?

Is there an equivalent to res = _lv_style_get_color(&style1, …
in MicroPython?

The function has an underscore, meaning that it will not be exported to MicroPython. If I recall correctly, we made the decision not to expose the style getters because they double the API size (for MicroPython, the number of functions is usually the problem, not their complexity).

1 Like