Skip to content

Commit e823e11

Browse files
committed
update v3.0.3
1 parent 2925b8b commit e823e11

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## [3.0.3] - 2021.08.31
2+
3+
* fixed [#126](https://github.com/nslog11/flutter_easyloading/issues/126)
14
## [3.0.2] - 2021.08.31
25

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

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.2
19+
flutter_easyloading: ^3.0.3
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.2
19+
flutter_easyloading: ^3.0.3
2020
```
2121
2222
## Import

lib/src/theme.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class EasyLoadingTheme {
5656
/// boxShadow color of loading
5757
static List<BoxShadow>? get boxShadow =>
5858
EasyLoading.instance.loadingStyle == EasyLoadingStyle.custom
59-
? EasyLoading.instance.boxShadow ?? BoxShadow()
59+
? EasyLoading.instance.boxShadow ?? [BoxShadow()]
6060
: null;
6161

6262
/// font color of status

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.2
3+
version: 3.0.3
44
homepage: https://github.com/nslog11/flutter_easyloading
55

66
environment:

0 commit comments

Comments
 (0)