1
0
Fork 0
InfiniTime/src/displayapp/screens/Label.cpp
2023-02-25 16:56:03 +02:00

12 lines
304 B
C++

#include "displayapp/screens/Label.h"
using namespace Pinetime::Applications::Screens;
Label::Label(uint8_t screenID, uint8_t numScreens, lv_obj_t* labelText) : labelText {labelText}, pageIndicator(screenID, numScreens) {
pageIndicator.Create();
}
Label::~Label() {
lv_obj_clean(lv_scr_act());
}