The Webview Univeral Flutter package for Appeto SDK.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

27 rader
630 B

  1. #ifndef FLUTTER_PLUGIN_WEBVIEW_WINDOW_PLUGIN_H_
  2. #define FLUTTER_PLUGIN_WEBVIEW_WINDOW_PLUGIN_H_
  3. #include <flutter_plugin_registrar.h>
  4. #include <flutter/dart_project.h>
  5. #include <flutter/flutter_view_controller.h>
  6. #ifdef FLUTTER_PLUGIN_IMPL
  7. #define FLUTTER_PLUGIN_EXPORT __declspec(dllexport)
  8. #else
  9. #define FLUTTER_PLUGIN_EXPORT __declspec(dllimport)
  10. #endif
  11. #if defined(__cplusplus)
  12. extern "C" {
  13. #endif
  14. FLUTTER_PLUGIN_EXPORT void WebviewUniversalPluginRegisterWithRegistrar(
  15. FlutterDesktopPluginRegistrarRef registrar);
  16. #if defined(__cplusplus)
  17. } // extern "C"
  18. #endif
  19. #endif // FLUTTER_PLUGIN_WEBVIEW_WINDOW_PLUGIN_H_