2021-10-30 13:02:39 -05:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Screen.h"
|
|
|
|
#include <lvgl/lvgl.h>
|
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Applications {
|
|
|
|
namespace Screens {
|
|
|
|
|
|
|
|
class PassKey : public Screen {
|
|
|
|
public:
|
2023-02-22 22:36:38 +02:00
|
|
|
explicit PassKey(uint32_t key);
|
2021-10-30 13:02:39 -05:00
|
|
|
~PassKey() override;
|
|
|
|
|
|
|
|
private:
|
2021-11-01 15:12:25 -05:00
|
|
|
lv_obj_t* passkeyLabel;
|
2021-10-30 13:02:39 -05:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|