Skip to content

Commit 2925b8b

Browse files
committed
update v3.0.2
1 parent 8f1dc36 commit 2925b8b

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [3.0.2] - 2021.08.31
2+
3+
* fixed [#125](https://github.com/nslog11/flutter_easyloading/issues/125)
4+
15
## [3.0.1] - 2021.08.28
26

37
* fixed [#120](https://github.com/nslog11/flutter_easyloading/issues/120)

README-zh_CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
```yaml
1818
dependencies:
19-
flutter_easyloading: ^3.0.1
19+
flutter_easyloading: ^3.0.2
2020
```
2121
2222
## 导入

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Add this to your package's `pubspec.yaml` file:
1616

1717
```yaml
1818
dependencies:
19-
flutter_easyloading: ^3.0.1
19+
flutter_easyloading: ^3.0.2
2020
```
2121
2222
## Import

lib/src/theme.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ class EasyLoadingTheme {
5353
? Colors.black.withOpacity(0.9)
5454
: Colors.white;
5555

56-
/// boxShadow color of loading
56+
/// boxShadow color of loading
5757
static List<BoxShadow>? get boxShadow =>
5858
EasyLoading.instance.loadingStyle == EasyLoadingStyle.custom
59-
? EasyLoading.instance.boxShadow!
59+
? EasyLoading.instance.boxShadow ?? BoxShadow()
6060
: null;
61-
61+
6262
/// font color of status
6363
static Color get textColor =>
6464
EasyLoading.instance.loadingStyle == EasyLoadingStyle.custom

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_easyloading
22
description: ✨A clean and lightweight loading/toast widget for Flutter, Easy to use without context, Support iOS、Android and Web
3-
version: 3.0.1
3+
version: 3.0.2
44
homepage: https://github.com/nslog11/flutter_easyloading
55

66
environment:

0 commit comments

Comments
 (0)