2023-07-10 17:50:31 +08:00
|
|
|
//
|
|
|
|
|
// Generated file. Do not edit.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
// clang-format off
|
|
|
|
|
|
|
|
|
|
#include "generated_plugin_registrant.h"
|
|
|
|
|
|
2023-07-29 09:25:21 +08:00
|
|
|
#include <aj_captcha_flutter/aj_captcha_flutter_plugin.h>
|
2023-07-18 18:10:57 +08:00
|
|
|
#include <file_selector_linux/file_selector_plugin.h>
|
2023-07-21 19:31:01 +08:00
|
|
|
#include <url_launcher_linux/url_launcher_plugin.h>
|
2023-07-10 17:50:31 +08:00
|
|
|
|
|
|
|
|
void fl_register_plugins(FlPluginRegistry* registry) {
|
2023-07-29 09:25:21 +08:00
|
|
|
g_autoptr(FlPluginRegistrar) aj_captcha_flutter_registrar =
|
|
|
|
|
fl_plugin_registry_get_registrar_for_plugin(registry, "AjCaptchaFlutterPlugin");
|
|
|
|
|
aj_captcha_flutter_plugin_register_with_registrar(aj_captcha_flutter_registrar);
|
2023-07-18 18:10:57 +08:00
|
|
|
g_autoptr(FlPluginRegistrar) file_selector_linux_registrar =
|
|
|
|
|
fl_plugin_registry_get_registrar_for_plugin(registry, "FileSelectorPlugin");
|
|
|
|
|
file_selector_plugin_register_with_registrar(file_selector_linux_registrar);
|
2023-07-21 19:31:01 +08:00
|
|
|
g_autoptr(FlPluginRegistrar) url_launcher_linux_registrar =
|
|
|
|
|
fl_plugin_registry_get_registrar_for_plugin(registry, "UrlLauncherPlugin");
|
|
|
|
|
url_launcher_plugin_register_with_registrar(url_launcher_linux_registrar);
|
2023-07-10 17:50:31 +08:00
|
|
|
}
|