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

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

namespace Pinetime {
  namespace Applications {
    namespace Screens {

      class PassKey : public Screen {
      public:
        PassKey(DisplayApp* app, uint32_t key);
        ~PassKey() override;

      private:
        lv_obj_t* passkeyLabel;
        lv_obj_t* backgroundLabel;
      };
    }
  }
}