Skip to content

Commit

Permalink
increase version to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
payam-zahedi committed Oct 15, 2023
1 parent 5fd1aa8 commit 1948c5e
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 13 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
## 1.0.0

* add dismissAll function by @payam-zahedi
* add toastification manager and alignment to toasts by @payam-zahedi
* add swipe to dismiss feature by @payam-zahedi
* update and deploy example app by @payam-zahedi
* update default icons and primary colors by @payam-zahedi
* add support for textDirection by @payam-zahedi
* add progress bar by @payam-zahedi
* add different close types by @payam-zahedi
* add custom animation to example by @payam-zahedi
* Add equatable and change cupertino with widgets by @benyaminbeyzaie
* Add _disposeAnimation() by @benyaminbeyzaie
* fix example design issues in v1.0.0 by @payam-zahedi
* update the built in toast base on the design by @payam-zahedi
* update theme values by @payam-zahedi
* Remove .vscode from git by @benyaminbeyzaie
* update kotlin_version by @benyaminbeyzaie
* Add new AppBar by @benyaminbeyzaie
* Add Toastification Config Provider by @benyaminbeyzaie
* add new properties to global config by @payam-zahedi
* Feat/update panel by @payam-zahedi
* Update header by @payam-zahedi
* Update toast preview component by @payam-zahedi
* Add responsive toast types by @benyaminbeyzaie
* update code preview widget by @payam-zahedi

## 0.0.3

* Added custom animation feature with `animation duration` and `animation builder` parameters
Expand Down
24 changes: 13 additions & 11 deletions example/lib/src/features/home/views/pages/home.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,19 @@ class _HomeScreenState extends State<HomeScreen> {
config: ToastificationConfig(
marginBuilder: (alignment) => const EdgeInsets.fromLTRB(0, 16, 0, 110),
),
child: const Scaffold(
extendBody: true,
bottomNavigationBar: BottomNavigationView(),
body: CustomScrollView(
primary: true,
slivers: [
ToastAppBar(),
SliverToBoxAdapter(child: ToastHeader()),
CustomizationSection(),
SliverToBoxAdapter(child: SizedBox(height: 64)),
],
child: const Scrollbar(
child: Scaffold(
extendBody: true,
bottomNavigationBar: BottomNavigationView(),
body: CustomScrollView(
primary: true,
slivers: [
ToastAppBar(),
SliverToBoxAdapter(child: ToastHeader()),
CustomizationSection(),
SliverToBoxAdapter(child: SizedBox(height: 64)),
],
),
),
),
);
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: A new Flutter project.

publish_to: "none"

version: 0.0.23+23
version: 1.0.0+30

environment:
sdk: ">=3.0.0 <4.0.0"
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: toastification
description: Toastification is a Flutter package that allows you to easily show toast and notification messages in your application.
version: 0.0.3
version: 1.0.0
homepage: https://payamzahedi.com/toastification/
repository: https://github.com/payam-zahedi/toastification

Expand Down

0 comments on commit 1948c5e

Please sign in to comment.