How to implement keyboard input into a tableview

LVGL ver 7.7.2

In order not to create many text areas, it would be more convenient to enter data from the keyboard directly into the table cells.
Maybe someone has ideas how this can be implemented.
I would be very grateful for a kick in the right direction.

You can set a custom event callback for the keyboard when you can catch the pressed keys. See: https://docs.lvgl.io/latest/en/html/widgets/keyboard.html#events

You can also store the last clicked table cell and modify its text according to the pressed keys. See https://github.com/lvgl/lvgl/blob/master/src/lv_widgets/lv_table.h#L260