- 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
16 lines
504 B
Swift
16 lines
504 B
Swift
//
|
|
// Generated file. Do not edit.
|
|
//
|
|
|
|
import FlutterMacOS
|
|
import Foundation
|
|
|
|
import app_links
|
|
import shared_preferences_foundation
|
|
import url_launcher_macos
|
|
|
|
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
|
|
AppLinksMacosPlugin.register(with: registry.registrar(forPlugin: "AppLinksMacosPlugin"))
|
|
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))
|
|
UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))
|
|
}
|