diff options
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index e2a766dc..fb2222d4 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -47,6 +47,10 @@ int main() { stack_layout->AddChild(text_block3, 1); flex_layout->AddChild(stack_layout, 1); + const auto text_block4 = TextBlock::Create(); + text_block4->SetText("Hello World!!!"); + flex_layout->AddChild(text_block4, 2); + window->ResolveNativeWindow()->SetVisible(true); return application->Run(); |