comprehensive_utils 0.6.9 copy "comprehensive_utils: ^0.6.9" to clipboard
comprehensive_utils: ^0.6.9 copied to clipboard

A collection of classes and functions containing simple and complex performance-oriented tools

Features #

Widgets

  • FluentListView

Tools

  • IndexingCollection<T>
  • ObservableTimer
  • CacheManager

Streams

  • DistinctSubject
  • DistinctValueStream
  • DistinctConnectableStream

Extensions

  • on Stream:

    • publishDistinctValue
    • publishDistinctValueSeeded
    • shareDistinctValue
    • shareDistinctValueSeeded
    • mapDistinctValue<T>
    • takeUntilFuture
  • on Iterable:

    • parseList<T>
    • parseIterable<T>
  • on Function:

    • apply

Getting started #

Add package import:

import 'package:comprehensive_utils/comprehensive_utils.dart';

Usage #

final DistinctSubject<String> _userNameSubject = DistinctSubject<String>();

DistinctValueStream<String> get userNameStream => _userNameSubject.stream;

void changeUserName(String userName) {
  // the value will be added to Stream if it differs from the previous one
  _userNameSubject.add(userName);
}
7
likes
140
points
2.68k
downloads

Publisher

unverified uploader

Weekly Downloads

A collection of classes and functions containing simple and complex performance-oriented tools

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

async, async_builder, collection, fast_immutable_collections, flutter, meta, nil, rxdart

More

Packages that depend on comprehensive_utils