- 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
9 lines
201 B
Dart
9 lines
201 B
Dart
// Basic smoke test placeholder — will be updated when UI is finalized.
|
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
test('placeholder test', () {
|
|
expect(1 + 1, 2);
|
|
});
|
|
}
|