|
| 1 | +import 'package:flutter/material.dart'; |
| 2 | +import './widgets/container.dart'; |
| 3 | + |
| 4 | +/// loading style |
| 5 | +enum EasyLoadingStyle { |
| 6 | + light, |
| 7 | + dark, |
| 8 | + custom, |
| 9 | +} |
| 10 | + |
| 11 | +/// loading animation type see [https://github.com/jogboms/flutter_spinkit#-showcase] |
| 12 | +enum EasyLoadingAnimationType { |
| 13 | + fadingCircle, |
| 14 | + circle, |
| 15 | + threeBounce, |
| 16 | + chasingDots, |
| 17 | + wave, |
| 18 | + wanderingCubes, |
| 19 | + rotatingPlain, |
| 20 | + doubleBounce, |
| 21 | + fadingFour, |
| 22 | + fadingCube, |
| 23 | + pulse, |
| 24 | + cubeGrid, |
| 25 | + rotatingCircle, |
| 26 | + foldingCube, |
| 27 | + pumpingHeart, |
| 28 | + dualRing, |
| 29 | + hourGlass, |
| 30 | + pouringHourGlass, |
| 31 | + fadingGrid, |
| 32 | + ring, |
| 33 | + ripple, |
| 34 | + spinningCircle, |
| 35 | + squareCircle, |
| 36 | +} |
| 37 | + |
| 38 | +/// loading mask type |
| 39 | +/// [none] default mask type, allow user interactions while loading is displayed |
| 40 | +/// [clear] don't allow user interactions while loading is displayed |
| 41 | +/// [black] don't allow user interactions while loading is displayed |
| 42 | +enum EasyLoadingMaskType { |
| 43 | + none, |
| 44 | + clear, |
| 45 | + black, |
| 46 | +} |
| 47 | + |
| 48 | +class EasyLoading { |
| 49 | + /// loading style, default [EasyLoadingStyle.dark] |
| 50 | + EasyLoadingStyle loadingStyle; |
| 51 | + |
| 52 | + /// loading animation type, default [EasyLoadingAnimationType.fadingCircle] |
| 53 | + EasyLoadingAnimationType animationType; |
| 54 | + |
| 55 | + /// loading mask type, default [EasyLoadingMaskType.none] |
| 56 | + EasyLoadingMaskType maskType; |
| 57 | + |
| 58 | + /// textAlign of status, default [TextAlign.center]. |
| 59 | + TextAlign textAlign; |
| 60 | + |
| 61 | + /// content padding of loading. |
| 62 | + EdgeInsets contentPadding; |
| 63 | + |
| 64 | + /// size of indicator, default 30.0. |
| 65 | + double indicatorSize; |
| 66 | + |
| 67 | + /// radius of loading, default 5.0. |
| 68 | + double radius; |
| 69 | + |
| 70 | + /// fontSize of loading, default 15.0. |
| 71 | + double fontSize; |
| 72 | + |
| 73 | + /// display duration of [showSuccess] [showError] [showInfo], default 2000ms |
| 74 | + Duration displayDuration; |
| 75 | + |
| 76 | + BuildContext context; |
| 77 | + OverlayEntry overlayEntry; |
| 78 | + GlobalKey<ProgressloadingContainerState> key = GlobalKey(); |
| 79 | + |
| 80 | + factory EasyLoading() => _getInstance(); |
| 81 | + static EasyLoading _instance; |
| 82 | + static EasyLoading get instance => _getInstance(); |
| 83 | + |
| 84 | + EasyLoading._internal() { |
| 85 | + /// set deafult value |
| 86 | + loadingStyle = EasyLoadingStyle.dark; |
| 87 | + animationType = EasyLoadingAnimationType.wave; |
| 88 | + maskType = EasyLoadingMaskType.none; |
| 89 | + textAlign = TextAlign.center; |
| 90 | + indicatorSize = 30.0; |
| 91 | + radius = 5.0; |
| 92 | + fontSize = 15.0; |
| 93 | + displayDuration = const Duration(milliseconds: 2000); |
| 94 | + contentPadding = const EdgeInsets.symmetric( |
| 95 | + vertical: 20.0, |
| 96 | + horizontal: 25.0, |
| 97 | + ); |
| 98 | + } |
| 99 | + |
| 100 | + static EasyLoading _getInstance() { |
| 101 | + if (_instance == null) { |
| 102 | + _instance = new EasyLoading._internal(); |
| 103 | + } |
| 104 | + return _instance; |
| 105 | + } |
| 106 | + |
| 107 | + /// show loading with [status] |
| 108 | + static void show({ |
| 109 | + String status, |
| 110 | + }) { |
| 111 | + _getInstance()._show(status: status); |
| 112 | + } |
| 113 | + |
| 114 | + /// show progress with [progress] [status] |
| 115 | + static void showProgress( |
| 116 | + double progress, { |
| 117 | + String status, |
| 118 | + }) {} |
| 119 | + |
| 120 | + /// showSuccess [status] |
| 121 | + static void showSuccess( |
| 122 | + String status, { |
| 123 | + Duration duration, |
| 124 | + }) { |
| 125 | + Widget w = Icon( |
| 126 | + Icons.done, |
| 127 | + color: Colors.white, |
| 128 | + size: _getInstance().indicatorSize, |
| 129 | + ); |
| 130 | + _getInstance()._show( |
| 131 | + status: status, |
| 132 | + duration: duration ?? _getInstance().displayDuration, |
| 133 | + w: w, |
| 134 | + ); |
| 135 | + } |
| 136 | + |
| 137 | + /// showError [status] |
| 138 | + static void showError( |
| 139 | + String status, { |
| 140 | + Duration duration, |
| 141 | + }) { |
| 142 | + Widget w = Icon( |
| 143 | + Icons.clear, |
| 144 | + color: Colors.white, |
| 145 | + size: _getInstance().indicatorSize, |
| 146 | + ); |
| 147 | + _getInstance()._show( |
| 148 | + status: status, |
| 149 | + duration: duration ?? _getInstance().displayDuration, |
| 150 | + w: w, |
| 151 | + ); |
| 152 | + } |
| 153 | + |
| 154 | + /// showInfo [status] |
| 155 | + static void showInfo( |
| 156 | + String status, { |
| 157 | + Duration duration, |
| 158 | + }) { |
| 159 | + Widget w = Icon( |
| 160 | + Icons.info_outline, |
| 161 | + color: Colors.white, |
| 162 | + size: _getInstance().indicatorSize, |
| 163 | + ); |
| 164 | + _getInstance()._show( |
| 165 | + status: status, |
| 166 | + duration: duration ?? _getInstance().displayDuration, |
| 167 | + w: w, |
| 168 | + ); |
| 169 | + } |
| 170 | + |
| 171 | + void _show({ |
| 172 | + Widget w, |
| 173 | + String status, |
| 174 | + double progress, |
| 175 | + Duration duration, |
| 176 | + }) { |
| 177 | + _getInstance()._remove(); |
| 178 | + |
| 179 | + OverlayEntry _overlayEntry = OverlayEntry( |
| 180 | + builder: (BuildContext context) => ProgressloadingContainer( |
| 181 | + key: _getInstance().key, |
| 182 | + status: status, |
| 183 | + indicator: w, |
| 184 | + ), |
| 185 | + ); |
| 186 | + _getInstance().overlayEntry = _overlayEntry; |
| 187 | + Overlay.of(_getInstance().context).insert(_overlayEntry); |
| 188 | + |
| 189 | + if (duration != null) { |
| 190 | + Future.delayed(duration, () { |
| 191 | + dismiss(animation: true); |
| 192 | + }); |
| 193 | + } |
| 194 | + } |
| 195 | + |
| 196 | + /// dismiss loading |
| 197 | + static void dismiss({ |
| 198 | + bool animation = true, |
| 199 | + }) async { |
| 200 | + if (animation == true) { |
| 201 | + await _getInstance().key.currentState.dismiss(); |
| 202 | + _getInstance()._remove(); |
| 203 | + } else { |
| 204 | + _getInstance()._remove(); |
| 205 | + } |
| 206 | + } |
| 207 | + |
| 208 | + void _remove() { |
| 209 | + _getInstance().overlayEntry?.remove(); |
| 210 | + _getInstance().overlayEntry = null; |
| 211 | + } |
| 212 | +} |
0 commit comments