flutter_debouncing_controllers 0.0.1 copy "flutter_debouncing_controllers: ^0.0.1" to clipboard
flutter_debouncing_controllers: ^0.0.1 copied to clipboard

Debouncing variants of flutter controllers.

flutter_debouncing_controllers #

Debouncing variants of flutter controllers.

All controllers are intended to be drop-in replacements:

/// before:
final textController = TextController()
  ..addListener(_onTextChange);

/// after:
final textController = DebouncingTextController()
  ..addListener(_onTextChange);
/// before:
final searchController = SearchController()
  ..addListener(_onSearchChange);

/// after:
final searchController = DebouncingSearchController()
  ..addListener(_onSearchChange);
4
likes
140
points
12
downloads

Publisher

verified publisheroquad.ru

Weekly Downloads

Debouncing variants of flutter controllers.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_debouncing_controllers