show_loader_dialog 0.0.2 copy "show_loader_dialog: ^0.0.2" to clipboard
show_loader_dialog: ^0.0.2 copied to clipboard

A new Flutter widget for show and hide loader from android side.

show_loader_dialog #

A new Flutter widget for show and hide loader from android side.

Features #

  • showing flutter loader dialog

Getting started #

To use this package, add show_loader_dialog as a dependency in your pubspec.yaml file.

Platform Support

Android iOS MacOS Web Linux Windows
✔️ ✔️

Usage #

Minimal example:

     ElevatedButton(
          onPressed: () {
            CommonDialog.showLoader(true);
            Future.delayed(
              const Duration(seconds: 5),
              () {
                CommonDialog.showLoader(false);
              },
            );
          },
          child: const Text("show loader"),
        ),
7
likes
140
points
10
downloads

Publisher

unverified uploader

Weekly Downloads

A new Flutter widget for show and hide loader from android side.

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on show_loader_dialog

Packages that implement show_loader_dialog