mirror of https://github.com/flutter/samples.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
939 B
24 lines
939 B
4 years ago
|
//
|
||
|
// Generated file. Do not edit.
|
||
|
//
|
||
|
|
||
3 years ago
|
// clang-format off
|
||
|
|
||
4 years ago
|
#include "generated_plugin_registrant.h"
|
||
|
|
||
4 years ago
|
#include <file_selector_linux/file_selector_plugin.h>
|
||
4 years ago
|
#include <menubar/menubar_plugin.h>
|
||
4 years ago
|
#include <url_launcher_linux/url_launcher_plugin.h>
|
||
4 years ago
|
|
||
|
void fl_register_plugins(FlPluginRegistry* registry) {
|
||
4 years ago
|
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);
|
||
4 years ago
|
g_autoptr(FlPluginRegistrar) menubar_registrar =
|
||
|
fl_plugin_registry_get_registrar_for_plugin(registry, "MenubarPlugin");
|
||
|
menubar_plugin_register_with_registrar(menubar_registrar);
|
||
4 years ago
|
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);
|
||
4 years ago
|
}
|