flutter-ddd-firebase-course
flutter-ddd-firebase-course copied to clipboard
https://resocoder.com/flutter-firebase-ddd-course
file:///Users/dalestewart/Downloads/flutter-ddd-firebase-course-master/lib/presentation/core/app_widget.dart:20:14 import 'package:auto_route/auto_route.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:notes_firebase_ddd_course/application/auth/auth_bloc.dart'; import 'package:notes_firebase_ddd_course/injection.dart'; import 'package:notes_firebase_ddd_course/presentation/routes/router.gr.dart' as app_router; import 'package:notes_firebase_ddd_course/presentation/sign_in/sign_in_page.dart'; class AppWidget extends StatelessWidget { @override Widget build(BuildContext context) { return MultiBlocProvider( providers:...
I would like to have a fully working step-by-step guide that works on mac os with latest flutter and firebase versions
I am in the auth page and when I use flutter inspector it shows me the spash screen with the loader in the center. This happens for every screen and...
In lastest version of firebase, it's required to call `await Firebase.initializeApp();` before using any function of Firebase. So where should we put this line of code?
Thanks for the awesome tutorials. Please upgrade the project to the latest BLoC package.
The ExtendedNavigator was fundamentally changed. The `pushReplacementNamed` method in ExtendedNavigator is now `replace`. Changes need to be made in the SplashScreen, SignInForm, and NotesOverviewPage.
``` factory TodoItemDto.fromDomain(TodoItem todoItem) { return TodoItemDto( // getting error here id: todoItem.id.getOrCrash(), name: todoItem.name.getOrCrash(), done: todoItem.done, ); } ``` The argument type 'dynamic' can't be assigned to the parameter...