Simple keyboard map help

Updating the keyboard btnm_map for simple text input

What MCU/Processor/Board and compiler are you using?

Esp32, Arduino

What do you want to achieve?

I want a minimal qwerty keyboard (a to z) with a space button, a delete button and an OK button.
Is it possible to use symbols rather than “Bksp” and LV_SYMBOL_OK ?

For example I would love the Bksp to be…
delete
and i would love the LV_SYMBOL_OK to say “SEARCH” or have an icon of a Magnifying Glass.

Code to reproduce

static const char* btnm_map[] = { "q", "w", "e", "r","t","y","u","i","o","p","\n",
                "a", "s", "d","f","g","h","j","k","l", "\n",
                "z", "x", "c","v","b","n","m","\n",
                "Bksp", " ", LV_SYMBOL_OK , "" };

Screenshot and/or video

A delete icon like this would be ideal… Also if there was a way to indent the keyboard rows as shown here that would be great. Tried adding some dummy blank buttons with “” but that didn’t work…

I’m planning to add LV_SYMBOL_BACKSPACE later (few weeks).
Until that you need to create a font which contains a Backspace symbol. Newer versions of FontAwesome already has it.