Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
## 0.0.6

- [Android] fix show crash

## 0.0.5

- [Android] Remove KProgressHUD & Implement SVProgressHUD for Android.
- [Android & iOS] Add setMinimumSize method.
- [Android & iOS] Add setRingThickness method.
- [Android & iOS] Add setRingRadiu method.
- [Android & iOS] Add setRingNoTextRadius method.
- [Android & iOS] Add setCornerRadius method.
- [Android & iOS] Add setBorderColor method.
- [Android & iOS] Add setBorderWidth method.
- [Android & iOS] Add setForegroundColor method.
- [Android & iOS] Add setBackgroundColor method.
- [Android & iOS] Add setBackgroundLayerColor method.
- [Android & iOS] Add setImageViewSize method.
- [Android & iOS] Add setMinimumDismissTimeInterval method.
- [Android & iOS] Add setFadeInAnimationDuration method.
- [Android & iOS] Add setFadeOutAnimationDuration method.

## 0.0.1

* Initial release
- Initial release
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[pub-image]: https://img.shields.io/pub/v/flutter_svprogresshud.svg
[pub-url]: https://pub.dev/packages/flutter_svprogresshud

A clean and lightweight progress HUD for flutter app.
A clean and lightweight progress HUD for flutter app, based on SVProgressHUD.

> The plugin supports almost all of [SVProgressHUD](https://github.com/SVProgressHUD/SVProgressHUD) APIs, for Android we have almost replicated SVProgressHUD effects ([View code](https://github.com/leanflutter/flutter_svprogresshud/tree/master/android/src/main/java/org/leanflutter/svprogresshud)).

Expand All @@ -17,7 +17,7 @@ Add this to your package's pubspec.yaml file:

```yaml
dependencies:
flutter_svprogresshud: ^0.0.5
flutter_svprogresshud: ^0.0.6
```

You can install packages from the command line:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ protected void onDraw(Canvas canvas) {
w = getWidth();
h = getHeight();

if (w == 0 || h == 0) return;

Shader shader;

Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.0.5"
version: "0.0.6"
flutter_test:
dependency: "direct dev"
description: flutter
Expand Down
6 changes: 3 additions & 3 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ packages:
name: meta
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.3.0-nullsafety.4"
version: "1.3.0-nullsafety.3"
path:
dependency: transitive
description:
Expand All @@ -99,7 +99,7 @@ packages:
name: stack_trace
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.10.0-nullsafety.2"
version: "1.10.0-nullsafety.1"
stream_channel:
dependency: transitive
description:
Expand Down Expand Up @@ -143,5 +143,5 @@ packages:
source: hosted
version: "2.1.0-nullsafety.3"
sdks:
dart: ">=2.10.0-110 <=2.11.0-213.1.beta"
dart: ">=2.10.0-110 <2.11.0"
flutter: ">=1.20.0 <2.0.0"
5 changes: 2 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: flutter_svprogresshud
description: A clean and lightweight progress HUD for flutter app.
version: 0.0.5
author: LiJianying <lijy91@foxmail.com>
description: A clean and lightweight progress HUD for flutter app, based on SVProgressHUD.
version: 0.0.6
homepage: https://github.com/leanflutter/flutter_svprogresshud

environment:
Expand Down