stuff-from-scratch/apps/notes_tk/web_client/WebClientView.cpp
2023-12-21 09:18:44 +00:00

20 lines
347 B
C++

#include "WebClientView.h"
#include "Label.h"
#include "TextNode.h"
#include "Theme.h"
WebClientView::WebClientView()
{
auto label = Label::Create();
label->setLabel("Web Client");
label->setMargin(1);
addWidget(std::move(label));
}
Ptr<WebClientView> WebClientView::Create()
{
return std::make_unique<WebClientView>();
}