- Integrated Firebase SDK in both Flutter apps (google-services, firebase_options) - Fixed auth flow, API client, and pairing/status blocs for dev environment - Added full Flutter project scaffolds (android, ios, web, etc.) - Added phase 3 chat engine requirement document - Added bugreport zip pattern to gitignore Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
85 lines
2.4 KiB
Dart
85 lines
2.4 KiB
Dart
import 'package:firebase_core/firebase_core.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:go_router/go_router.dart';
|
|
import 'core/api/api_client.dart';
|
|
import 'core/auth/auth_bloc.dart';
|
|
import 'core/status/status_bloc.dart';
|
|
import 'core/chat/chat_request_bloc.dart';
|
|
import 'firebase_options.dart';
|
|
import 'router.dart';
|
|
|
|
void main() async {
|
|
WidgetsFlutterBinding.ensureInitialized();
|
|
await Firebase.initializeApp(options: DefaultFirebaseOptions.currentPlatform);
|
|
runApp(const App());
|
|
}
|
|
|
|
class App extends StatefulWidget {
|
|
const App({super.key});
|
|
|
|
@override
|
|
State<App> createState() => _AppState();
|
|
}
|
|
|
|
class _AppState extends State<App> with WidgetsBindingObserver {
|
|
late final ApiClient _apiClient;
|
|
late final AuthBloc _authBloc;
|
|
late final GoRouter _router;
|
|
late final StatusBloc _statusBloc;
|
|
late final ChatRequestBloc _chatRequestBloc;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
WidgetsBinding.instance.addObserver(this);
|
|
_apiClient = ApiClient();
|
|
_authBloc = AuthBloc(apiClient: _apiClient)..add(AppStarted());
|
|
_router = buildRouter(_authBloc);
|
|
_statusBloc = StatusBloc(apiClient: _apiClient);
|
|
_chatRequestBloc = ChatRequestBloc(apiClient: _apiClient);
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
WidgetsBinding.instance.removeObserver(this);
|
|
_authBloc.close();
|
|
_router.dispose();
|
|
_statusBloc.close();
|
|
_chatRequestBloc.close();
|
|
super.dispose();
|
|
}
|
|
|
|
@override
|
|
void didChangeAppLifecycleState(AppLifecycleState state) {
|
|
if (state == AppLifecycleState.paused || state == AppLifecycleState.detached) {
|
|
_statusBloc.add(AppPaused());
|
|
} else if (state == AppLifecycleState.resumed) {
|
|
_statusBloc.add(AppResumed());
|
|
}
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MultiBlocProvider(
|
|
providers: [
|
|
BlocProvider.value(value: _authBloc),
|
|
BlocProvider.value(value: _statusBloc),
|
|
BlocProvider.value(value: _chatRequestBloc),
|
|
RepositoryProvider.value(value: _apiClient),
|
|
],
|
|
child: BlocListener<AuthBloc, AuthState>(
|
|
listener: (context, state) {
|
|
if (state is AuthAuthenticated) {
|
|
_statusBloc.add(StatusLoadRequested());
|
|
}
|
|
},
|
|
child: MaterialApp.router(
|
|
title: 'Halo Bestie Mitra',
|
|
routerConfig: _router,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|