20 lines
321 B
C++
20 lines
321 B
C++
#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;
|
|
};
|
|
}
|
|
}
|
|
}
|