Skip to content

Commit 0073195

Browse files
author
nslog11
authored
Merge pull request nslogx#121 from joaovvrodrigues/develop
Fix nslogx#120
2 parents b06681f + 4d2babe commit 0073195

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.1] - 2021.08.28
2+
3+
* fixed [#120](https://github.com/nslog11/flutter_easyloading/issues/120)
4+
15
## [3.0.0] - 2021.03.12
26

37
* 🎉 It's support Null Safety now

README-zh_CN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
```yaml
1818
dependencies:
19-
flutter_easyloading: ^3.0.0
19+
flutter_easyloading: ^3.0.1
2020
```
2121
2222
## 导入
@@ -218,4 +218,4 @@ EasyLoading.instance
218218

219219
感谢 [JetBrains Open Source](https://www.jetbrains.com/community/opensource/#support) 提供支持
220220

221-
[<img src="https://raw.githubusercontent.com/nslog11/flutter_easyloading/master/images/jetbrains.png" width=200 height=112/>](https://www.jetbrains.com/?from=FlutterEasyLoading)
221+
[<img src="https://raw.githubusercontent.com/nslog11/flutter_easyloading/master/images/jetbrains.png" width=200 height=112/>](https://www.jetbrains.com/?from=FlutterEasyLoading)

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

lib/src/widgets/indicator.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ class _LoadingIndicatorState extends State<LoadingIndicator> {
163163
);
164164
break;
165165
case EasyLoadingIndicatorType.pouringHourGlass:
166-
_indicator = SpinKitPouringHourglass(
166+
_indicator = SpinKitPouringHourGlass(
167167
color: _indicatorColor,
168168
size: _size,
169169
);

pubspec.yaml

Lines changed: 2 additions & 2 deletions
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.0
3+
version: 3.0.1
44
homepage: https://github.com/nslog11/flutter_easyloading
55

66
environment:
@@ -10,7 +10,7 @@ dependencies:
1010
flutter:
1111
sdk: flutter
1212

13-
flutter_spinkit: ^5.0.0
13+
flutter_spinkit: ^5.1.0
1414

1515
dev_dependencies:
1616
flutter_test:

0 commit comments

Comments
 (0)