增加了 APPinfo 页面的基础显示功能

This commit is contained in:
2026-04-02 17:13:24 +08:00
parent e3435cd3dd
commit df94630210
32 changed files with 2031 additions and 1439 deletions

View File

@@ -0,0 +1,17 @@
#ifndef APPINFO_VIEW_H
#define APPINFO_VIEW_H
#include "types.h"
#include "Drv/pages/AppInfo/def.h"
#include "Drv/pages/global/renderer_lcd.h"
typedef struct appinfo_view_t appinfo_view_t;
struct appinfo_view_t
{
void (*show_top_name)(uint8_t *name);
};
void AppInfoView_Init(appinfo_view_t *view);
#endif