Files
trail-mate/modules/ui_shared/include/ui/menu/menu_layout.h
T
vicliuandGitHub d320b6511d Unify PlatformIO and ESP-IDF around a shared UI/runtime shellRefactor/repo structure (#11)
* Unify PlatformIO and ESP-IDF around a shared UI/runtime shell
2026-03-12 01:17:46 +08:00

25 lines
366 B
C++

#pragma once
#include "lvgl.h"
#include "app/app_facades.h"
#include "ui/app_catalog.h"
namespace ui
{
namespace menu_layout
{
struct InitOptions
{
app::IAppMessagingFacade* messaging = nullptr;
AppCatalog apps{};
};
void init(const InitOptions& options);
lv_obj_t* menuPanel();
void bringContentToFront();
} // namespace menu_layout
} // namespace ui