step 2 : update package & solve flutter_typehead version

This commit is contained in:
sindhu
2025-04-11 12:28:45 +07:00
parent a24d08dc74
commit aa05bb5d51
68 changed files with 964 additions and 11 deletions

View File

@@ -6,6 +6,18 @@
#include "generated_plugin_registrant.h"
#include <geolocator_windows/geolocator_windows.h>
#include <maps_launcher/maps_launcher_plugin.h>
#include <permission_handler_windows/permission_handler_windows_plugin.h>
#include <url_launcher_windows/url_launcher_windows.h>
void RegisterPlugins(flutter::PluginRegistry* registry) {
GeolocatorWindowsRegisterWithRegistrar(
registry->GetRegistrarForPlugin("GeolocatorWindows"));
MapsLauncherPluginRegisterWithRegistrar(
registry->GetRegistrarForPlugin("MapsLauncherPlugin"));
PermissionHandlerWindowsPluginRegisterWithRegistrar(
registry->GetRegistrarForPlugin("PermissionHandlerWindowsPlugin"));
UrlLauncherWindowsRegisterWithRegistrar(
registry->GetRegistrarForPlugin("UrlLauncherWindows"));
}