flutter_disposebag 1.1.0 copy "flutter_disposebag: ^1.1.0" to clipboard
flutter_disposebag: ^1.1.0 copied to clipboard

Automatically disposes StreamSubscription and closes Sink when disposing State<T>.

flutter_disposebag #

Author: Petrus Nguyễn Thái Học #

Pub Pub Version codecov Flutter Tests

  • A package to help disposing Streams and closing Sinks easily for Flutter.
  • Automatically disposes StreamSubscription and closes Sink when disposing State<T>.

Medium article #

How to easily cancel streams in Flutter

Usage #

A simple usage example:

import 'dart:async';

import 'package:flutter/material.dart';
import 'package:flutter_disposebag/flutter_disposebag.dart';

class HomePage extends StatefulWidget {
  @override
  _HomePageState createState() => _HomePageState();
}

class _HomePageState extends State<HomePage> with DisposeBagMixin {
  final controller = StreamController<int>();

  @override
  void initState() {
    super.initState();

    Stream.periodic(const Duration(milliseconds: 500), (i) => i)
        .listen((event) {})
        .disposedBy(bag);

    controller.stream.listen((event) {}).disposedBy(bag);
    controller.disposedBy(bag);
  }

  @override
  Widget build(BuildContext context) {
    return Container();
  }
}

Features and bugs #

Please file feature requests and bugs at the issue tracker.

4
likes
130
pub points
79%
popularity

Publisher

unverified uploader

Automatically disposes StreamSubscription and closes Sink when disposing State<T>.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

disposebag, flutter, meta

More

Packages that depend on flutter_disposebag