bloc_pod 0.18.0 copy "bloc_pod: ^0.18.0" to clipboard
bloc_pod: ^0.18.0 copied to clipboard

A dependency injection for BLoC, implemented with Pod as alternative to provider.

example/lib/main.dart

import 'package:bloc_pod/bloc_pod.dart';

/// Counter Events
sealed class CounterEvent {}

final class CounterIncrementPressed extends CounterEvent {}

/// Counter Bloc
class CounterBloc extends Bloc<CounterEvent, int> {
  CounterBloc() : super(0) {
    on<CounterIncrementPressed>((event, emit) => emit(state + 1));
  }
}

/// Create a counter bloc Pod
final counterBloc = blocPod<CounterBloc, int>((_) => CounterBloc());

void main() async {
  // Create a pod container.
  final container = PodContainer();

  // Print counter bloc pod's value.
  print(container.get(counterBloc)); // 0

  // Subscribe counter bloc pod's value changes.
  final cancelSubscribe = container.subscribe(counterBloc, (value) {
    print(value); // 1
  });

  // Increment the value of counter bloc.
  container.get(counterBloc.notifier).add(CounterIncrementPressed());

  /// Wait for next iteration of the event-loop
  /// to ensure event has been processed.
  await Future<void>.delayed(Duration.zero);

  // Cancel counter bloc pod's subscribe.
  cancelSubscribe();
}
2
likes
140
pub points
0%
popularity

Publisher

verified publishereronsoft.com

A dependency injection for BLoC, implemented with Pod as alternative to provider.

Homepage
Repository (GitHub)
View/report issues

Topics

#bloc #pod #atom #dependency-injection #state-management

Documentation

API reference

License

MIT (LICENSE)

Dependencies

bloc, pod

More

Packages that depend on bloc_pod