- Add supabase_flutter dependency - Replace default counter template with auth flow (AuthGate, LoginScreen, HomeScreen) - Implement email/password sign-in via signInWithPassword() - Add forgot password flow with resetPasswordForEmail() and hwcollector://login deep link - Handle PASSWORD_RECOVERY event to show set-new-password dialog - Add deep link intent-filter to AndroidManifest for hwcollector://login scheme - Configure Supabase URL and publishable key - Replace outdated widget test with placeholder
17 lines
475 B
C++
17 lines
475 B
C++
//
|
|
// Generated file. Do not edit.
|
|
//
|
|
|
|
// clang-format off
|
|
|
|
#include "generated_plugin_registrant.h"
|
|
|
|
#include <app_links/app_links_plugin_c_api.h>
|
|
#include <url_launcher_windows/url_launcher_windows.h>
|
|
|
|
void RegisterPlugins(flutter::PluginRegistry* registry) {
|
|
AppLinksPluginCApiRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("AppLinksPluginCApi"));
|
|
UrlLauncherWindowsRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("UrlLauncherWindows"));
|
|
}
|