This commit is contained in:
JMARyA 2024-10-08 10:11:18 +02:00
parent b13b385cb7
commit fcecb5aad5
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
11 changed files with 186 additions and 129 deletions

View file

@ -6,9 +6,15 @@
#include "generated_plugin_registrant.h"
#include <permission_handler_windows/permission_handler_windows_plugin.h>
#include <qr_bar_code/qr_bar_code_plugin_c_api.h>
#include <webview_windows/webview_windows_plugin.h>
void RegisterPlugins(flutter::PluginRegistry* registry) {
PermissionHandlerWindowsPluginRegisterWithRegistrar(
registry->GetRegistrarForPlugin("PermissionHandlerWindowsPlugin"));
QrBarCodePluginCApiRegisterWithRegistrar(
registry->GetRegistrarForPlugin("QrBarCodePluginCApi"));
WebviewWindowsPluginRegisterWithRegistrar(
registry->GetRegistrarForPlugin("WebviewWindowsPlugin"));
}

View file

@ -3,7 +3,9 @@
#
list(APPEND FLUTTER_PLUGIN_LIST
permission_handler_windows
qr_bar_code
webview_windows
)
list(APPEND FLUTTER_FFI_PLUGIN_LIST