b98a813f3c
lvgl-module - Move and rename source and include files - Fix bug with missing lvgl unlock - New widgets: spinner, toolbar, sliderbox TactilityC - Removed tt_lock, tt_lvgl_\*
11 lines
264 B
C++
11 lines
264 B
C++
#include <Tactility/lvgl/Toolbar.h>
|
|
#include <Tactility/app/AppManifest.h>
|
|
|
|
namespace tt::lvgl {
|
|
|
|
lv_obj_t* toolbar_create(lv_obj_t* parent, const app::AppContext& app) {
|
|
return lvgl_toolbar_create(parent, app.getManifest().appName.c_str());
|
|
}
|
|
|
|
} // namespace
|