flutter_debouncing_controllers 0.0.1
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);