typing_after_action 0.0.6
typing_after_action: ^0.0.6 copied to clipboard
A lightweight debounce helper for Flutter TextFields — run an action after the user stops typing for a configurable delay.
0.0.6 #
- Added
example/app (debounced search field) so pub.dev shows usage under the Example tab.
0.0.5 #
- Updated for Flutter 3.41 / Dart 3.11: added missing
voidreturn type onrun()(fixes newstrict_top_level_inferencelint). - Bumped
flutter_lintsto ^6.0.0 and reformatted source withdart format. - Removed accidentally committed platform scaffolding (
android/,ios/,linux/,macos/,windows/) — this is a pure Dart/Flutter library, not an app or plugin. - Added
repositoryandissue_trackertopubspec.yaml.
0.0.2 #
-
TODO: Describe initial release.
-
TypingAfterAction typingAfterAction = TypingAfterAction();
-
put on Onchange Function like this ->
onChanged: (val) { typingAfterAction.run(() { // Write Your logic here }); }