Skip to content

Commit 8b36258

Browse files
committed
init
0 parents  commit 8b36258

14 files changed

+944
-0
lines changed

.gitignore

+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
# Miscellaneous
2+
*.class
3+
*.log
4+
*.pyc
5+
*.swp
6+
.DS_Store
7+
.atom/
8+
.buildlog/
9+
.history
10+
.svn/
11+
12+
# IntelliJ related
13+
*.iml
14+
*.ipr
15+
*.iws
16+
.idea/
17+
18+
# The .vscode folder contains launch configuration and tasks you configure in
19+
# VS Code which you may wish to be included in version control, so this line
20+
# is commented out by default.
21+
#.vscode/
22+
23+
# Flutter/Dart/Pub related
24+
**/doc/api/
25+
.dart_tool/
26+
.flutter-plugins
27+
.flutter-plugins-dependencies
28+
.packages
29+
.pub-cache/
30+
.pub/
31+
build/
32+
33+
# Android related
34+
**/android/**/gradle-wrapper.jar
35+
**/android/.gradle
36+
**/android/captures/
37+
**/android/gradlew
38+
**/android/gradlew.bat
39+
**/android/local.properties
40+
**/android/**/GeneratedPluginRegistrant.java
41+
42+
# iOS/XCode related
43+
**/ios/**/*.mode1v3
44+
**/ios/**/*.mode2v3
45+
**/ios/**/*.moved-aside
46+
**/ios/**/*.pbxuser
47+
**/ios/**/*.perspectivev3
48+
**/ios/**/*sync/
49+
**/ios/**/.sconsign.dblite
50+
**/ios/**/.tags*
51+
**/ios/**/.vagrant/
52+
**/ios/**/DerivedData/
53+
**/ios/**/Icon?
54+
**/ios/**/Pods/
55+
**/ios/**/.symlinks/
56+
**/ios/**/profile
57+
**/ios/**/xcuserdata
58+
**/ios/.generated/
59+
**/ios/Flutter/App.framework
60+
**/ios/Flutter/Flutter.framework
61+
**/ios/Flutter/Flutter.podspec
62+
**/ios/Flutter/Generated.xcconfig
63+
**/ios/Flutter/app.flx
64+
**/ios/Flutter/app.zip
65+
**/ios/Flutter/flutter_assets/
66+
**/ios/Flutter/flutter_export_environment.sh
67+
**/ios/ServiceDefinitions.json
68+
**/ios/Runner/GeneratedPluginRegistrant.*
69+
70+
# Exceptions to above rules.
71+
!**/ios/**/default.mode1v3
72+
!**/ios/**/default.mode2v3
73+
!**/ios/**/default.pbxuser
74+
!**/ios/**/default.perspectivev3
75+
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages

.metadata

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# This file tracks properties of this Flutter project.
2+
# Used by Flutter tool to assess capabilities and perform upgrades etc.
3+
#
4+
# This file should be version controlled and should not be manually edited.
5+
6+
version:
7+
revision: 27321ebbad34b0a3fafe99fac037102196d655ff
8+
channel: stable
9+
10+
project_type: package

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## [0.0.1] - TODO: Add release date.
2+
3+
* TODO: Describe initial release.

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 huangjianke
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# flutter_easyloading
2+
3+
A new Flutter package project.
4+
5+
## Getting Started
6+
7+
This project is a starting point for a Dart
8+
[package](https://flutter.dev/developing-packages/),
9+
a library module containing code that can be shared easily across
10+
multiple Flutter or Dart projects.
11+
12+
For help getting started with Flutter, view our
13+
[online documentation](https://flutter.dev/docs), which offers tutorials,
14+
samples, guidance on mobile development, and a full API reference.

lib/flutter_easyloading.dart

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
library flutter_easyloading;
2+
3+
export 'src/easy_loading.dart';
4+
export 'src/widgets/loading.dart';

lib/src/easy_loading.dart

+212
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,212 @@
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+
}

lib/src/widgets/animation.dart

Whitespace-only changes.

0 commit comments

Comments
 (0)