()
| 9 | |
| 10 | @ui.page('/') |
| 11 | def page(): |
| 12 | nonlocal j |
| 13 | j = ui.joystick(on_move=lambda e: coordinates.set_text(f'move {e.x:.3f}, {e.y:.3f}'), |
| 14 | on_end=lambda _: coordinates.set_text('end 0, 0')) |
| 15 | coordinates = ui.label('start 0, 0') |
| 16 | |
| 17 | screen.open('/') |
| 18 | joystick = screen.find_element(j) |