#include "{{projectName}}_plugin.h" #include #include #include #include #include #include #include namespace { class {{pluginClass}} : public flutter::Plugin { public: static void RegisterWithRegistrar(flutter::PluginRegistrarGlfw *registrar); {{pluginClass}}(); virtual ~{{pluginClass}}(); private: // Called when a method is called on this plugin's channel from Dart. void HandleMethodCall( const flutter::MethodCall &method_call, std::unique_ptr> result); }; // static void {{pluginClass}}::RegisterWithRegistrar( flutter::PluginRegistrarGlfw *registrar) { auto channel = std::make_unique>( registrar->messenger(), "{{projectName}}", &flutter::StandardMethodCodec::GetInstance()); auto plugin = std::make_unique<{{pluginClass}}>(); channel->SetMethodCallHandler( [plugin_pointer = plugin.get()](const auto &call, auto result) { plugin_pointer->HandleMethodCall(call, std::move(result)); }); registrar->AddPlugin(std::move(plugin)); } {{pluginClass}}::{{pluginClass}}() {} {{pluginClass}}::~{{pluginClass}}() {} void {{pluginClass}}::HandleMethodCall( const flutter::MethodCall &method_call, std::unique_ptr> result) { // Replace "getPlatformVersion" check with your plugin's method. // See: // https://github.com/flutter/engine/tree/master/shell/platform/common/cpp/client_wrapper/include/flutter // and // https://github.com/flutter/engine/tree/master/shell/platform/glfw/client_wrapper/include/flutter // for the relevant Flutter APIs. if (method_call.method_name().compare("getPlatformVersion") == 0) { struct utsname uname_data = {}; uname(&uname_data); std::ostringstream version_stream; version_stream << "Linux " << uname_data.version; flutter::EncodableValue response(version_stream.str()); result->Success(&response); } else { result->NotImplemented(); } } } // namespace void {{pluginClass}}RegisterWithRegistrar( FlutterDesktopPluginRegistrarRef registrar) { // The plugin registrar wrappers owns the plugins, registered callbacks, etc., // so must remain valid for the life of the application. static auto *plugin_registrars = new std::map>; auto insert_result = plugin_registrars->emplace( registrar, std::make_unique(registrar)); {{pluginClass}}::RegisterWithRegistrar(insert_result.first->second.get()); }