InfiniTime.git

ref: 264b5bed43d5a703df20c1e305f394a15e9d2484

src/displayapp/screens/PassKey.h


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

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

namespace Pinetime {
  namespace Applications {
    namespace Screens {

      class PassKey : public Screen {
      public:
        explicit PassKey(uint32_t key);
        ~PassKey() override;

      private:
        lv_obj_t* passkeyLabel;
      };
    }
  }
}