bloc_event_status 1.0.0 copy "bloc_event_status: ^1.0.0" to clipboard
bloc_event_status: ^1.0.0 copied to clipboard

Track the status of events in a bloc without updating the state.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:talker/talker.dart';
import 'package:talker_bloc_logger/talker_bloc_logger.dart';
import 'package:example/app/app.dart';

final talker = Talker();

void main() {
  Bloc.observer = TalkerBlocObserver(
    talker: talker,
    settings: const TalkerBlocLoggerSettings(
      // printChanges: true,
      // printTransitions: false,
      printStateFullData: false,
    ),
  );

  runApp(const TodoApp());
}
2
likes
160
points
33
downloads

Publisher

verified publisherjacopoguzzo.dev

Weekly Downloads

Track the status of events in a bloc without updating the state.

Repository (GitHub)
View/report issues

Topics

#bloc #state-management

Documentation

Documentation
API reference

License

MIT (license)

Dependencies

equatable, flutter, flutter_bloc, meta, nested

More

Packages that depend on bloc_event_status