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.
18 lines
621 B
18 lines
621 B
4 years ago
|
//
|
||
|
// Generated file. Do not edit.
|
||
|
//
|
||
|
|
||
|
#include "generated_plugin_registrant.h"
|
||
|
|
||
|
#include <file_chooser/file_chooser_plugin.h>
|
||
|
#include <menubar/menubar_plugin.h>
|
||
|
|
||
|
void fl_register_plugins(FlPluginRegistry* registry) {
|
||
|
g_autoptr(FlPluginRegistrar) file_chooser_registrar =
|
||
|
fl_plugin_registry_get_registrar_for_plugin(registry, "FileChooserPlugin");
|
||
|
file_chooser_plugin_register_with_registrar(file_chooser_registrar);
|
||
|
g_autoptr(FlPluginRegistrar) menubar_registrar =
|
||
|
fl_plugin_registry_get_registrar_for_plugin(registry, "MenubarPlugin");
|
||
|
menubar_plugin_register_with_registrar(menubar_registrar);
|
||
|
}
|