import 'package:contacts_plus/widgets/home_screen.dart'; import 'package:contacts_plus/widgets/login_screen.dart'; import 'package:flutter/material.dart'; import 'api_client.dart'; import 'models/authentication_data.dart'; void main() { runApp(const ContactsPlus()); } class ContactsPlus extends StatefulWidget { const ContactsPlus({super.key}); @override State createState() => _ContactsPlusState(); } class _ContactsPlusState extends State { final Typography _typography = Typography.material2021(platform: TargetPlatform.android); AuthenticationData _authData = AuthenticationData.unauthenticated(); @override Widget build(BuildContext context) { return ClientHolder( authenticationData: _authData, child: MaterialApp( title: 'Contacts+', theme: ThemeData( textTheme: _typography.white, colorScheme: ColorScheme.fromSeed(seedColor: Colors.purple, brightness: Brightness.dark) ), home: _authData.isAuthenticated ? const HomeScreen() : LoginScreen( onLoginSuccessful: (AuthenticationData authData) { if (authData.isAuthenticated) { setState(() { _authData = authData; }); } }, ), ), ); } } class ClientHolder extends InheritedWidget { final ApiClient client; ClientHolder({super.key, required AuthenticationData authenticationData, required super.child}) : client = ApiClient(authenticationData: authenticationData); static ClientHolder? maybeOf(BuildContext context) { return context.dependOnInheritedWidgetOfExactType(); } static ClientHolder of(BuildContext context) { final ClientHolder? result = maybeOf(context); assert(result != null, 'No AuthenticatedClient found in context'); return result!; } @override bool updateShouldNotify(covariant ClientHolder oldWidget) => oldWidget.client != client; }