overlay_loading_progress 1.0.1 copy "overlay_loading_progress: ^1.0.1" to clipboard
overlay_loading_progress: ^1.0.1 copied to clipboard

A flutter widget of overlay loading progress Indicator. You can easily customize as you want.

overlay_loading_progress #

A flutter widget of overlay loading progress Indicator. You can easily customize as you want.

Website example >> https://loadingprogress.mustafaturkmen.dev

Usage #

It has a very easy to use.

add this line to pubspec.yaml


   dependencies:
     overlay_loading_progress: ^1.0.1

import package


   import 'package:overlay_loading_progress/overlay_loading_progress.dart';

Start it with

   OverlayLoadingProgress.start(context);

Stop it with

   OverlayLoadingProgress.stop();

Complete Example #

   OverlayLoadingProgress.start(context);
   await Future.delayed(const Duration(seconds: 3));
   OverlayLoadingProgress.stop();

gif_1

Use With Gif #

   OverlayLoadingProgress.start(context,
     gifOrImagePath: 'assets/loading.gif',
   );
   await Future.delayed(const Duration(seconds: 3));
   OverlayLoadingProgress.stop();

gif_2

Use With Custom Widget #

   OverlayLoadingProgress.start(context,
     widget: Container(
       width: MediaQuery.of(context).size.width / 4,
       padding: EdgeInsets.all(MediaQuery.of(context).size.width / 13),
       child: const AspectRatio(
                aspectRatio: 1,
                child: const CircularProgressIndicator(),
             ),
         ),
   );
   await Future.delayed(const Duration(seconds: 3));
   OverlayLoadingProgress.stop();
11
likes
110
pub points
91%
popularity

Publisher

verified publishermustafaturkmen.dev

A flutter widget of overlay loading progress Indicator. You can easily customize as you want.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on overlay_loading_progress