I have an application that uses a TextArea to simulate a simple 2x16 LCD display.
This requires the TextArea to receive and display single characters, if a SPACE character is followed by a group of text characters, the TextArea assumes a WORD and moves that group of characters to the next line.
I need to disable “word wrap” in multi line mode, not single line mode.
I searched through the LVGL documentation and I cannot find how to disable word wrap.
This is the only advice I find:
The Text area can be configured to be on a single line with lv_textarea_set_one_line(textarea, true)* . In this mode the height is set automatically to show only one line, line break characters are ignored, and word wrap is disabled.
The behavior I need is, at the end of a line, only single characters will wrap to the next line and not grouped as ASSUMED WORDS…