Skip to content

Commit

Permalink
modify: bump version up to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Kurogoma4D committed Jun 17, 2021
1 parent d3281de commit fa86b3e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 0.3.0
### FEAT
- **BREAKING: Overall, changes API.**
- Removed `InAppNotification.of()`. To show notificaiton, use `InAppNotification.show()` instead.
- Changed usage of `InAppNotification`, see Usage section in README.
- Replaced `Stack` with `OverlayEntry` on showing notification sysytem.
- Removed `minAlertHeight` property. Notification size is decided from specified Widget now.
- Removed `safeAreaPadding` property. Notification position is now considering safe area automatically.
- Added `curve` property to `InAppNotification.show()` method.

## 0.2.0+1
Organize documents.

Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ A Flutter package to show custom in-app notification with any Widgets.
child: NotificationBody(count: _count),
context: context,
onTap: () => print('Notification tapped!'),
duration: Duration(milliseconds: _duration),
);
```

Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.2.0+1"
version: "0.3.0"
matcher:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: in_app_notification
description: A Flutter package to show custom in-app notification with any Widgets.
version: 0.2.0+1
version: 0.3.0
repository: https://github.com/cb-cloud/flutter_in_app_notification

environment:
Expand Down

0 comments on commit fa86b3e

Please sign in to comment.