InfiniTime.git

ref: 9196c18d376d4f18c686bcfec8550f9c8659d5ea

src/displayapp/screens/Label.cpp


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#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());
}