summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/Label.h
blob: dba89bbfe50893d91d367d07a22ddaee79fee076 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma once

#include "Screen.h"
#include <lvgl/lvgl.h>

namespace Pinetime {
  namespace Applications {
    namespace Screens {

      class Label : public Screen {
        public:
          Label(DisplayApp* app, const char* text);
          ~Label() override;
          bool Refresh() override {return false;}

        private:
          lv_obj_t * label = nullptr;
          const char* text = nullptr;
      };
    }
  }
}