GeekTrack/2.Firmware/components/GeekOS/Pages/StartUp/StartUpView.h

30 lines
344 B
C++

#ifndef __STARTUP_VIEW_H
#define __STARTUP_VIEW_H
#include "Pages/Page.h"
namespace Page
{
class StartupView
{
public:
void Create(lv_obj_t* root);
void Delete();
public:
struct
{
lv_obj_t* cont;
lv_obj_t* labelLogo;
lv_anim_timeline_t* anim_timeline;
} ui;
private:
};
}
#endif // !__VIEW_H