Debounce builder, debounce timer

Overview

Debounce builder, debounce timer

Features

  • debounce builder - Widget provides debounce function from DebounceTimer instance
  • debounce timer - Provide call callback after delay duration

Getting started

Add package to your project bash flutter pub add debounce_builder

Wrap your widget

class HomePage extends StatelessWidget {
  const HomePage({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return DebounceBuilder(
        delay: const Duration(milliseconds: 250),
        builder: (context, debounce) {
          return TextField(
            onChanged: (value) => debounce(() => print(value)),
          );
        },
    );
  }
}
You might also like...

This is Stop Watch Timer for flutter plugin.🏃‍♂️

This is Stop Watch Timer for flutter plugin.🏃‍♂️

stop_watch_timer Simple CountUp timer / CountDown timer. It easily create app of stopwatch. https://pub.dev/packages/stop_watch_timer Example code See

Nov 9, 2022

Provider Demo - Simple Provider using provider update counter and apply a timer also increase and decrease that value by pressing buttons

Provider Demo - Simple Provider using provider update counter and apply a timer also increase and decrease that value by pressing buttons

state_management simple Provider using provider update counter and apply a timer

Feb 2, 2022

Stop Watch - Stop Watch Timer in Flutter

Stop Watch - Stop Watch Timer in Flutter

timerapp A new Flutter project. Getting Started This project is a starting point

Jan 27, 2022

Chroneum - A Neumorphic Flutter timer and chronometer

Chroneum! A nice Flutter Neumorphic timer and chronometer. More Details The appl

Apr 4, 2022

A dart timer that can be configured to fire once or repeatedly with ability start, stop, resume and cancel.

A timer that can be configured to fire once or repeatedly with ability start, stop, resume and cancel. Getting started Add CompleteTimer to your pubsp

Jul 20, 2022

Form builder image picker - Form builder image picker for flutter

form_builder_image_picker Field for picking image(s) from Gallery or Camera for

Jan 28, 2022

Responsive-Ui-builder - The responsive ui builder package contains widgets that helps you to create your UI responsive

Responsive-Ui-builder - The responsive ui builder package contains widgets that helps you to create your UI responsive

Responsive Ui Builder Getting Started The responsive ui builder package contains

Feb 1, 2022

A customizable timer builder, with controller, animation, intervals, callbacks and custom actions for Flutter.

A customizable timer builder, with controller, animation, intervals, callbacks and custom actions for Flutter.

Custom Timer ⌛ A highly customizable timer builder, with controller, animation, intervals, callbacks, custom actions, and more! 📌 Simple Usage @overr

Nov 23, 2022

Effortless property builder for composing maintainable Flutter UI

Effortless property builder for composing maintainable Flutter UI

Niku Effortless property builder for composing maintainable Flutter UI Why Creating UI in Flutter is easy. Its declarative enables developers to contr

Dec 30, 2022

Allows Dart reflection using code generation/builder.

reflection_factory reflection_factory allows Dart reflection with an easy approach, even for third-party classes, using code generation portable for a

Oct 30, 2022

This package supports drag & drop widgets inside the GridView.builder for multiplatform

This package supports drag & drop widgets inside the GridView.builder for multiplatform

This package supports drag & drop widgets inside the GridView.builder for multiplatform. It provides all the properties which are available in Gridview. builder and easy to implement with the few lines of code.

Dec 29, 2022

Provides Dart Build System builder for creating Injection pattern using annotations.

Provides Dart Build System builder for creating Injection pattern using annotations. Gate generator The core package providing generators using annoat

Dec 20, 2022

Listview With ListView Builder Image-And Text

Listview With ListView Builder Image-And Text

listview_builder_with_image_and_text A new Flutter project. Getting Started This project is a starting point for a Flutter application. A few resource

Nov 6, 2021

A StreamBuilder alternative that provides builder and event callbacks

 A StreamBuilder alternative that provides builder and event callbacks

mainstream A StreamBuilder alternative that provides builder and event callbacks. See the Futuristic package for a similar API for working with Future

Apr 9, 2021

A builder for extracting a package version into code

Include the version of your package in our source code. Add build_version to pubspec.yaml. Also make sure there is a version field. name: my_pkg versi

Dec 7, 2022

A flutter demo app to practice List.generate with ListView.builder

ListView 3 A flutter demo app to practice List.generate with ListView.builder Developer Alexander Sosa (https://www.linkedin.com/in/alexander-sosa-asi

Jan 3, 2022

Flutter App with using future builder and json data

Flutter App with using future builder and json data

HOROSCOPES APP A new Flutter project with json data and Future Builder. Getting Started This project is a starting point for a Flutter application. A

Jan 26, 2022

Parser builder - Lightweight template-based parser build system. Simple prototyping. Comfortable debugging. Effective developing

parser_builder Lightweight template-based parser build system. Simple prototypin

Dec 1, 2022

Form builder fix - A package helps in creation of data collection forms in Flutter by removing the boilerplate needed to build a form

Flutter FormBuilder - flutter_form_builder This package helps in creation of dat

Jan 29, 2022
Owner
Pokhodyun Alexander
Pokhodyun Alexander
Responsive-Ui-builder - The responsive ui builder package contains widgets that helps you to create your UI responsive

Responsive Ui Builder Getting Started The responsive ui builder package contains

null 0 Feb 1, 2022
A builder for extracting a package version into code

Include the version of your package in our source code. Add build_version to pubspec.yaml. Also make sure there is a version field. name: my_pkg versi

Kevin Moore 39 Dec 7, 2022
Jannis 0 Jan 29, 2022
Immutable Dart collections via the builder pattern.

Built Collections for Dart Introduction Built Collections are immutable collections using the builder pattern. Each of the core SDK collections is spl

Google 250 Dec 20, 2022
An rx stream builder widget that is able to pre-populate a flutter StreamBuilder with data from an rx stream if the stream is either a value or a replay observable.

An rx stream builder widget that is able to pre-populate a flutter StreamBuilder with data from an rx stream if the stream is either a value or a replay observable. For example the RX stream is a BehaviorSubject or a ReplaySubject.

Jon Samwell 8 Jan 22, 2022
Mempelajari Listview.builder

tugas_flutter_2 Sebuah tugas flutter yang dimana mempelajari banyak hal yaitu Listview.builder online API TabView Personal Deskripsi Project ini hasil

Jarganaya 3 Sep 9, 2022
An interpolated progress builder for video_player controllers

Have you been here before: you created a video player using video_player, but the progress bar updates way to infrequently and makes your UX look chop

Tim 8 Aug 2, 2022
A simple timer for your workouts, built with Flutter!

Just Another Workout Timer A simple timer for your workouts, built with Flutter! NOTE: Due to the process of releasing updates on F-Droid, the version

Bastian Block 79 Nov 26, 2022
This is a Quiz App With Timer In Flutter

Quizstar ! This is a Complete Quiz App in FLUTTER using a lot of features such as Multiple Screens Timer (30 sec By Default) Button Color Changes On C

Prince 185 Dec 18, 2022
Aplicativo de teste que roda em background timer atual utilizando Isolate.

# isolate_app A new Flutter project. ## Getting Started This project is a starting point for a Flutter application. A few resources to get you sta

Isaque Santos Paixão 1 Jun 20, 2022