| 31 | } |
| 32 | |
| 33 | void ChatView::updateToolbarTitle() { |
| 34 | if (!state || !toolbar) return; |
| 35 | std::string channel = state->getCurrentChannel(); |
| 36 | std::string title = "Chat: " + channel; |
| 37 | lvgl::toolbar_set_title(toolbar, title); |
| 38 | } |
| 39 | |
| 40 | void ChatView::createInputBar(lv_obj_t* parent) { |
| 41 | inputWrapper = lv_obj_create(parent); |
nothing calls this directly
no test coverage detected