More platforms' support, upgraded gradle kotlin deps

This commit is contained in:
Phani Pavan Kambhampati
2022-05-31 10:30:57 +05:30
parent 52b34c3b05
commit 7a7291f9f6
84 changed files with 3299 additions and 368 deletions

View File

@@ -0,0 +1,26 @@
#ifndef FLUTTER_PLUGIN_MODAL_PROGRESS_HUD_NSN_PLUGIN_H_
#define FLUTTER_PLUGIN_MODAL_PROGRESS_HUD_NSN_PLUGIN_H_
#include <flutter_linux/flutter_linux.h>
G_BEGIN_DECLS
#ifdef FLUTTER_PLUGIN_IMPL
#define FLUTTER_PLUGIN_EXPORT __attribute__((visibility("default")))
#else
#define FLUTTER_PLUGIN_EXPORT
#endif
typedef struct _ModalProgressHudNsnPlugin ModalProgressHudNsnPlugin;
typedef struct {
GObjectClass parent_class;
} ModalProgressHudNsnPluginClass;
FLUTTER_PLUGIN_EXPORT GType modal_progress_hud_nsn_plugin_get_type();
FLUTTER_PLUGIN_EXPORT void modal_progress_hud_nsn_plugin_register_with_registrar(
FlPluginRegistrar* registrar);
G_END_DECLS
#endif // FLUTTER_PLUGIN_MODAL_PROGRESS_HUD_NSN_PLUGIN_H_