Skip to content

Commit

Permalink
Merge pull request #41 from boyan01/upgrade
Browse files Browse the repository at this point in the history
Upgrade version to 1.0.4
  • Loading branch information
boyan01 authored May 25, 2020
2 parents 673d3b3 + 1747bf5 commit 97a5968
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
## [1.0.3] - 20202/3/13
## [1.0.4] - 2020/5/26
* Support for `BottomSlideNotification`. [#40](https://github.com/boyan01/overlay_support/pull/40) by [Giles Correia Morton](https://github.com/gilescm)
* Upgrade min dart sdk version to 2.1.0. [Policy](https://dart.dev/tools/pub/publishing#publishing-prereleases)

## [1.0.3] - 2020/3/13
* expose toastTheme. by [juvs](https://github.com/juvs)

## [1.0.2] - 2019/10/23
Expand Down
1 change: 1 addition & 0 deletions example/android/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
org.gradle.jvmargs=-Xmx1536M

android.enableR8=true
6 changes: 6 additions & 0 deletions example/lib/pages/page_main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@ class HomePage extends StatelessWidget {
);
},
child: Text("Fixed Notification"),
),
RaisedButton(
child: Text("Bottom Notification"),
onPressed: () {
showSimpleNotification(Text("Hello"), position: NotificationPosition.bottom);
},
)
]),
_Section(title: 'Custom notification', children: <Widget>[
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: overlay_support
description: proivder support for overlay, easy to build toast and internal notification
version: 1.0.3
version: 1.0.4
author: YangBin <yangbinyhbn@gmail.com>
homepage: https://github.com/boyan01/overlay_support

environment:
sdk: ">=2.0.0-dev.68.0 <3.0.0"
sdk: ">=2.1.0 <3.0.0"

dependencies:
flutter:
Expand Down

0 comments on commit 97a5968

Please sign in to comment.