overlay_loader_with_app_icon 0.0.3 copy "overlay_loader_with_app_icon: ^0.0.3" to clipboard
overlay_loader_with_app_icon: ^0.0.3 copied to clipboard

A flutter package that shows a beautiful overlay loader with appIcon when initiating an async call.

Overlay loader with app icon #

A clean and light-weight package that shows a beautiful overlay loader with appIcon when initiating an async call.

Demo App #

Getting started #

Example

Add package to pubspec.yaml

dependencies:
  ...
  overlay_loader_with_app_icon:

Next, import the library into your widget.

import 'package:overlay_loader_with_app_icon/overlay_loader_with_app_icon.dart';

Usage #

To make an async call and display a modal with an appIcon progress indicator while the async call is taking place, wrap [OverlayLoaderWithAppIcon] around any widget. Using the [isLoading] boolean variable, the progress loader can be enabled or disabled.


bool _loading = false;
@override
Widget build(BuildContext context) {
  return Scaffold(
    body: OverlayLoaderWithAppIcon(
        isLoading: _loading,
        appIcon:  Image.asset('images/appIcon.png'),
        child: Container(
       child: Form(...)
    )),
  );
}

More Options #

The current parameters are customizable in the constructor

OverlayLoaderWithAppIcon({
  required this.isLoading, 
  required this.child, 
  required this.appIcon, 
  this.appIconSize=50,
  this.borderRadius=15, 
  this.overlayOpacity=0.5, 
  this.circularProgressColor, 
  this.overlayBackgroundColor
});

Thank you for using my package😊🙏🏻 #

If you need more features #

Please open an issue so that we can discuss it

75
likes
110
pub points
88%
popularity

Publisher

unverified uploader

A flutter package that shows a beautiful overlay loader with appIcon when initiating an async call.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on overlay_loader_with_app_icon