OMOTE/Platformio/OmoteUI/UIs/BasicRefactored/page/Demo.hpp
MatthewColvin efa2d4a137 Rework Mains so they are basically as identical as possible.
Create HardwareFactory which is responsible for providing the HardwareAbstract to any part of the program based on compiler defines
2023-10-15 08:24:29 -05:00

20 lines
No EOL
313 B
C++

#pragma once
#include "PageBase.hpp"
namespace UI::Page {
class Demo : public Base {
public:
Demo();
void AddSlider();
void OnShow() override{};
void OnHide() override{};
bool OnKeyEvent(KeyPressAbstract::KeyEvent aKeyEvent);
private:
std::vector<UIElement *> sliders;
};
} // namespace UI::Page