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

A pure dart package which prevent continuous execution of functions.

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();
}

Bugs and improvements #

For bugs and improvements issue tracker.

0
likes
30
pub points
56%
popularity

Publisher

unverified uploader

A pure dart package which prevent continuous execution of functions.

Repository (GitHub)
View/report issues

Documentation

Documentation

License

MIT (LICENSE)

More

Packages that depend on flutter_debounce