Ken Van Hoeylandt e842e30ab3
created ServiceManifest (#5)
based on AppManifest
2024-01-05 19:38:39 +01:00

17 lines
252 B
C

#pragma once
#include "lvgl.h"
#ifdef __cplusplus
extern "C" {
#endif
#define TOP_BAR_ICON_SIZE 18
#define TOP_BAR_HEIGHT (TOP_BAR_ICON_SIZE + 4) // 4 extra pixels for border and outline
void top_bar(lv_obj_t* parent);
#ifdef __cplusplus
}
#endif