1
0
mirror of https://github.com/flutter/samples.git synced 2026-03-24 13:22:01 +00:00

Add desktop window setup to form_app (#1039)

This commit is contained in:
Miguel Beltran
2022-03-04 00:04:20 +01:00
committed by GitHub
parent 3eeac8e7de
commit 6d7ff34d62
30 changed files with 1413 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
//
// Generated file. Do not edit.
//
// clang-format off
#include "generated_plugin_registrant.h"
#include <window_size/window_size_plugin.h>
void fl_register_plugins(FlPluginRegistry* registry) {
g_autoptr(FlPluginRegistrar) window_size_registrar =
fl_plugin_registry_get_registrar_for_plugin(registry, "WindowSizePlugin");
window_size_plugin_register_with_registrar(window_size_registrar);
}