Ezirius

Results 7 comments of Ezirius

**We need a notarised binary for macOS, please.** This is very important in a era where security is and needs to be foremost in our minds. The lack of a...

With the following versions in dependencies and dev_dependencies in pubspec.yaml: dependencies: dartz: ^0.9.1 freezed_annotation: ^0.11.0 flutter_bloc: ^6.0.1 dev_dependencies: build_runner: ^1.10.0 freezed: ^0.11. --- I get the following on "AuthBloc(this._authFacade);": The...

In bloc.dart... --- The Bloc definition in 4.0.0 is: ```dart abstract class Bloc extends Stream implements Sink { ``` ... ```dart /// {@macro bloc} Bloc() { _state = initialState; _bindEventsToStates();...

Okay, so there are at least 2 separate issues that need to be solved to upgrade the BLoC library to the latest version

In the app to accommodate the breaking changes implemented in the BLoC library

@rdhillbb, not BLoC related, but may help in terms of understanding/implementing Clean Architecture and TDD: * Clean Architecture Example And Documentation: [Examples And Documentation](https://gitlab.com/ezohr_public_examples/class_examples_dart) * Test Cases Framework and Value...