Spinbox widget. problem with rotation

[LVGL (9.3.0) MicroPython (1.25.0)]

I need an object with a 90 degree rotation.
After transformation, spinbox cant set cursor position to change value
(The widget uses the old coordinates to find this position)
I tried 180 degrees, it’s more understandable.
Any ideas? How can this be implemented without problems?
The problem is shown in the simulator.
https://sim.lvgl.io/v9.0/micropython/ports/webassembly/index.html
(method set_style_transform_pivot does not solve the problem)


import lvgl as lv
import display_driver
scr_display = lv.screen_active()



spinbox = lv.spinbox(scr_display)
spinbox.set_range(-1000, 25000)
spinbox.set_height(40)
spinbox.set_width(100)
spinbox.set_digit_format(5, 2)
spinbox.step_prev()
spinbox.set_width(100)
spinbox.center()
spinbox.set_style_transform_pivot_x(50,0)
spinbox.set_style_transform_pivot_y(20,0)
spinbox.set_style_transform_rotation(1800,0)