2024-05-23 19:14:08 +02:00
|
|
|
//
|
|
|
|
// Generated file. Do not edit.
|
|
|
|
//
|
|
|
|
|
|
|
|
// clang-format off
|
|
|
|
|
|
|
|
#include "generated_plugin_registrant.h"
|
|
|
|
|
2024-05-24 00:10:11 +02:00
|
|
|
#include <dynamic_color/dynamic_color_plugin.h>
|
2024-05-23 19:14:08 +02:00
|
|
|
#include <flutter_secure_storage_linux/flutter_secure_storage_linux_plugin.h>
|
|
|
|
#include <media_kit_libs_linux/media_kit_libs_linux_plugin.h>
|
|
|
|
|
|
|
|
void fl_register_plugins(FlPluginRegistry* registry) {
|
2024-05-24 00:10:11 +02:00
|
|
|
g_autoptr(FlPluginRegistrar) dynamic_color_registrar =
|
|
|
|
fl_plugin_registry_get_registrar_for_plugin(registry, "DynamicColorPlugin");
|
|
|
|
dynamic_color_plugin_register_with_registrar(dynamic_color_registrar);
|
2024-05-23 19:14:08 +02:00
|
|
|
g_autoptr(FlPluginRegistrar) flutter_secure_storage_linux_registrar =
|
|
|
|
fl_plugin_registry_get_registrar_for_plugin(registry, "FlutterSecureStorageLinuxPlugin");
|
|
|
|
flutter_secure_storage_linux_plugin_register_with_registrar(flutter_secure_storage_linux_registrar);
|
|
|
|
g_autoptr(FlPluginRegistrar) media_kit_libs_linux_registrar =
|
|
|
|
fl_plugin_registry_get_registrar_for_plugin(registry, "MediaKitLibsLinuxPlugin");
|
|
|
|
media_kit_libs_linux_plugin_register_with_registrar(media_kit_libs_linux_registrar);
|
|
|
|
}
|