| 29 | } |
| 30 | |
| 31 | void GuiService::softwareKeyboardShow(lv_obj_t* textarea) { |
| 32 | lock(); |
| 33 | |
| 34 | if (isStarted && keyboard != nullptr) { |
| 35 | lv_obj_clear_flag(keyboard, LV_OBJ_FLAG_HIDDEN); |
| 36 | lv_keyboard_set_textarea(keyboard, textarea); |
| 37 | } |
| 38 | |
| 39 | unlock(); |
| 40 | } |
| 41 | |
| 42 | void GuiService::softwareKeyboardHide() { |
| 43 | lock(); |
no test coverage detected