Simplified toolbar creation (#83)

This commit is contained in:
Ken Van Hoeylandt
2024-11-22 23:47:18 +01:00
committed by GitHub
parent a4593c6248
commit 881c8517bf
15 changed files with 15 additions and 15 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
#include "Ui/Toolbar.h"
static void app_show(tt::App app, lv_obj_t* parent) {
lv_obj_t* toolbar = tt::lvgl::toolbar_create_for_app(parent, app);
lv_obj_t* toolbar = tt::lvgl::toolbar_create(parent, app);
lv_obj_align(toolbar, LV_ALIGN_TOP_MID, 0, 0);
lv_obj_t* label = lv_label_create(parent);