Last updated:
0 purchases
flutter debounce
Debounce #
Package which implements the debounce functionality.
It may be used with or without callbacks and Futures.
Getting Started #
import 'package:debounce/debounce.dart';
main() {
// duration defaults to 400 milliseconds.
final debounce = Debounce(() {
// Your code here...
});
debounce.call();
}
copied to clipboard
Bugs and improvements #
For bugs and improvements issue tracker.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.