{"id":24044640,"url":"https://github.com/dev-cetera/df_debouncer","last_synced_at":"2026-04-12T11:45:08.059Z","repository":{"id":251306136,"uuid":"837016063","full_name":"dev-cetera/df_debouncer","owner":"dev-cetera","description":"A package that provides a practical Debouncer for optimizing performance by controlling the frequency of function calls in response to rapid events.","archived":false,"fork":false,"pushed_at":"2025-02-10T10:56:26.000Z","size":57,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-10T11:37:06.383Z","etag":null,"topics":["dart","debouncer","flutter","library","package","ui"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/df_debouncer","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dev-cetera.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-02T03:26:05.000Z","updated_at":"2025-02-10T10:56:29.000Z","dependencies_parsed_at":"2025-01-01T05:19:32.124Z","dependency_job_id":"f1332689-2fe6-443d-a6db-3ab38fe52406","html_url":"https://github.com/dev-cetera/df_debouncer","commit_stats":null,"previous_names":["robmllze/df_debouncer","devcetra/df_debouncer","dev-cetera/df_debouncer"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-cetera%2Fdf_debouncer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-cetera%2Fdf_debouncer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-cetera%2Fdf_debouncer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-cetera%2Fdf_debouncer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dev-cetera","download_url":"https://codeload.github.com/dev-cetera/df_debouncer/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240822693,"owners_count":19863307,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dart","debouncer","flutter","library","package","ui"],"created_at":"2025-01-08T23:32:35.737Z","updated_at":"2025-10-24T10:22:06.996Z","avatar_url":"https://github.com/dev-cetera.png","language":"Dart","funding_links":["https://www.buymeacoffee.com/dev_cetera","https://github.com/sponsors/dev-cetera","https://www.patreon.com/c/RobertMollentze"],"categories":[],"sub_categories":[],"readme":"\u003ca href=\"https://www.buymeacoffee.com/dev_cetera\" target=\"_blank\"\u003e\u003cimg align=\"right\" src=\"https://cdn.buymeacoffee.com/buttons/default-orange.png\" height=\"48\"\u003e\u003c/a\u003e\n\u003ca href=\"https://discord.gg/gEQ8y2nfyX\" target=\"_blank\"\u003e\u003cimg align=\"right\" src=\"https://raw.githubusercontent.com/dev-cetera/.github/refs/heads/main/assets/icons/discord_icon/discord_icon.svg\" height=\"48\"\u003e\u003c/a\u003e\n\nDart \u0026 Flutter Packages by dev-cetera.com \u0026 contributors.\n\n[![sponsor](https://img.shields.io/badge/sponsor-grey?logo=github-sponsors)](https://github.com/sponsors/dev-cetera)\n[![patreon](https://img.shields.io/badge/patreon-grey?logo=patreon)](https://www.patreon.com/c/RobertMollentze)\n[![pub](https://img.shields.io/pub/v/df_debouncer.svg)](https://pub.dev/packages/df_debouncer)\n[![tag](https://img.shields.io/badge/tag-v0.4.16-purple?logo=github)](https://github.com/dev-cetera/df_debouncer/tree/v0.4.16)\n[![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/dev-cetera/df_debouncer/main/LICENSE)\n\n---\n\n[![banner](https://github.com/dev-cetera/df_safer_dart/blob/v0.4.16/doc/assets/banner.png?raw=true)](https://github.com/dev-cetera)\n\n\u003c!-- BEGIN _README_CONTENT --\u003e\n\n## Summary\n\nA package that provides a practical Debouncer for optimizing performance by controlling the frequency of function calls in response to rapid events.\n\n## Example\n\n```dart\n// Create a debouncer to automatically save a form to the database after some delay.\nlate final _autosave = Debouncer(\n  delay: const Duration(milliseconds: 500),\n   onStart: () {\n      print('Saving form...');\n    },\n  onWaited: () {\n    final name = _nameController.text;\n    final email = _emailController.text;\n    print('Form saved to database: {\"name\": \"$name\", \"email\": \"$email\"}');\n  },\n  onCall: () {\n    print('Form changed!');\n  },\n);\n\n// Tigger the autosave when the form changes.\nTextField(\n  controller: _emailController,\n  decoration: const InputDecoration(\n    labelText: 'Email:',\n   ),\n  onChanged: (_) =\u003e _autosave(),\n),\n\n// Immediately save the form to the database when the page is closed.\n@override\nvoid dispose() {\n  _autosave.finalize();\n  super.dispose();\n}\n```\n\n\u003c!-- END _README_CONTENT --\u003e\n\n---\n\n☝️ Please refer to the [API reference](https://pub.dev/documentation/df_debouncer/) for more information.\n\n---\n\n## 💬 Contributing and Discussions\n\nThis is an open-source project, and we warmly welcome contributions from everyone, regardless of experience level. Whether you're a seasoned developer or just starting out, contributing to this project is a fantastic way to learn, share your knowledge, and make a meaningful impact on the community.\n\n### ☝️ Ways you can contribute\n\n- **Buy me a coffee:** If you'd like to support the project financially, consider [buying me a coffee](https://www.buymeacoffee.com/dev_cetera). Your support helps cover the costs of development and keeps the project growing.\n- **Find us on Discord:** Feel free to ask questions and engage with the community here: https://discord.gg/gEQ8y2nfyX.\n- **Share your ideas:** Every perspective matters, and your ideas can spark innovation.\n- **Help others:** Engage with other users by offering advice, solutions, or troubleshooting assistance.\n- **Report bugs:** Help us identify and fix issues to make the project more robust.\n- **Suggest improvements or new features:** Your ideas can help shape the future of the project.\n- **Help clarify documentation:** Good documentation is key to accessibility. You can make it easier for others to get started by improving or expanding our documentation.\n- **Write articles:** Share your knowledge by writing tutorials, guides, or blog posts about your experiences with the project. It's a great way to contribute and help others learn.\n\nNo matter how you choose to contribute, your involvement is greatly appreciated and valued!\n\n### ☕ We drink a lot of coffee...\n\nIf you're enjoying this package and find it valuable, consider showing your appreciation with a small donation. Every bit helps in supporting future development. You can donate here: https://www.buymeacoffee.com/dev_cetera\n\n\u003ca href=\"https://www.buymeacoffee.com/dev_cetera\" target=\"_blank\"\u003e\u003cimg src=\"https://cdn.buymeacoffee.com/buttons/default-orange.png\" height=\"40\"\u003e\u003c/a\u003e\n\n## 🧑‍⚖️ License\n\nThis project is released under the [MIT License](https://raw.githubusercontent.com/dev-cetera/df_debouncer/main/LICENSE). See [LICENSE](https://raw.githubusercontent.com/dev-cetera/df_debouncer/main/LICENSE) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdev-cetera%2Fdf_debouncer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdev-cetera%2Fdf_debouncer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdev-cetera%2Fdf_debouncer/lists"}