Renamed displayapp/Screens to displayapp/screens

This commit is contained in:
Avamander
2020-10-02 21:49:55 +03:00
parent e3fb2f0b89
commit 4daab26926
40 changed files with 36 additions and 36 deletions

View File

@@ -0,0 +1,23 @@
#pragma once
#include <vector>
#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;
};
}
}
}