mirror of
https://github.com/vicliu624/trail-mate.git
synced 2026-07-18 01:26:12 +00:00
25 lines
366 B
C++
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
|