As the title says, how do you hide a spinbox’s blue blob cursor in LVGL 9 ?
Thanks
You can use lv_obj_remove_style(spinbox, NULL, LV_PART_CURSOR );
But it looks a little strange.
You can see part And style of spinbox in the documentation, The parts of the Spinbox are identical to the [Text area]
1 Like
Hi Lizhaoming634,
Thanks, that did it - exactly what I wanted!