progresshud

A useful Hud framework is implemented by calling native code by Flutter. With one line of code, you can call Hud out anywhere and control its hiding. In the example App, you can see how to use it. SVProgress HUD is used on iOS and SVProgress HUD-Android is used on Android (this package is a copy of iOS version). UI comes from the native layer, so there is not too much definition space. If you need to customize, you can rewrite the framework code on each platform separately (more troublesome).

EasyUse ProgressHUD for flutter app.

Usage

Progresshud.show();
Dart

Show

Progresshud.showWithStatus('myinfo');
Dart

Status

Progresshud.showSuccessWithStatus('myinfo');
Dart

Success

Progresshud.showInfoWithStatus('myinfo');
Dart

Info

Progresshud.showErrorWithStatus('myinfo');
Dart

Error

Progresshud.setDefaultMaskTypeBlack();
Dart

MaskTypeBlack

Progresshud.setDefaultMaskTypeGradient('myinfo');
Dart

MaskTypeGradient

GitHub

https://github.com/mjl0602/OVProgressHUD