flutter/examples/hello_world/linux/main.cc
Robert Ancell 7b458e5af1
Implement Linux part of examples (#108068)
Add Linux files for hello_world and platform_channel examples
2022-12-08 08:44:11 +13:00

7 lines
180 B
C++

#include "my_application.h"
int main(int argc, char** argv) {
g_autoptr(MyApplication) app = my_application_new();
return g_application_run(G_APPLICATION(app), argc, argv);
}