Add dom::blink and component::Input

This commit is contained in:
Arthur Sonzogni
2018-10-21 14:18:11 +02:00
parent 50a732c651
commit 20eaeae4c3
11 changed files with 96 additions and 31 deletions

View File

@@ -14,8 +14,8 @@ class Input : public Component {
~Input() override;
// State.
std::wstring content = L"input";
std::wstring placeholder = L"placeholder";
std::wstring content;
std::wstring placeholder;
// State update callback.
std::function<void()> on_change = [](){};