load 0.1.0 copy "load: ^0.1.0" to clipboard
load: ^0.1.0 copied to clipboard

outdated

Global loading widget, Pure flutter library, not use native code. It is similar to OKToast in use.

load #

Global loading widget, which can be used through simple configuration.

Pure flutter library, not use native code.

It is similar to OKToast in use.

ScreenShot #

Screenshot_2019-05-21-14-08-42-731_com.example.ex.png

Usage #

  • install

Add to yaml

dependencies:
  load: 0.1.0
  • import
import 'package:load/load.dart';
  • wrap your application
void main() {
  runApp(
    LoadingProvider(
      child: MyApp(),
    ),
  );
}

or

LoadingProvider(
  child: MaterialApp(),
);

see example/lib/main.dart

  • show or hide dialog
showLoadingDialog();
hideLoadingDialog();

Advanced Usage #

Custom Loading Widget #

Using LoadingThemeData and loadingWidgetBuilder

LoadingProvider(
    loadingWidgetBuilder: (ctx, data) {
    return Center(
        child: SizedBox(
        width: 30,
        height: 30,
        child: Container(
            child: CupertinoActivityIndicator(),
            color: Colors.blue,
        ),
        ),
    );
    },
    child: MyApp(),
),

image

Custom some config #

All params is optional

Params Type Default Value Desc
backgroundColor Color Colors.black54 Background transparent mask
tapDismiss bool true Will it close when touching the background?
loadingBackgroundColor Color Colors.white Background color for the center Loading Widget
loadingPadding EdgeInsets EdgeInsets.all(8.0) Padding for the center Loading Widget
loadingSize Size Size(55,55) Size for the center Loading Widget
animDuration Duration Duration(milliseconds: 300) Show/Hide Time Duration
22
likes
0
pub points
87%
popularity

Publisher

verified publisherkikt.top

Global loading widget, Pure flutter library, not use native code. It is similar to OKToast in use.

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on load