From 15700c077a5636212842dacb6263522391947a31 Mon Sep 17 00:00:00 2001 From: Payam Zahedi Date: Sat, 21 Sep 2024 12:10:17 +0200 Subject: [PATCH 1/3] feat: update flutter version to 3.24.3 --- .fvmrc | 2 +- lib/src/core/toastification_manager.dart | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.fvmrc b/.fvmrc index 64a9dcb..c62692b 100644 --- a/.fvmrc +++ b/.fvmrc @@ -1,4 +1,4 @@ { - "flutter": "3.24.0", + "flutter": "3.24.3", "flavors": {} } \ No newline at end of file diff --git a/lib/src/core/toastification_manager.dart b/lib/src/core/toastification_manager.dart index 2b0e814..b00dc0f 100644 --- a/lib/src/core/toastification_manager.dart +++ b/lib/src/core/toastification_manager.dart @@ -218,7 +218,6 @@ class ToastificationManager { alignment: alignment, child: Container( margin: _marginBuilder(context, alignment, config), - color: Colors.black38, constraints: BoxConstraints.tightFor( width: config.itemWidth, ), From b1d468c5fb6bb23a331dddd980ab6e1ccde30a3c Mon Sep 17 00:00:00 2001 From: Payam Zahedi Date: Sat, 21 Sep 2024 12:16:24 +0200 Subject: [PATCH 2/3] release: v2.3.0 --- CHANGELOG.md | 6 ++++++ pubspec.yaml | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a9ebbe2..5e267cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 2.3.0 +* fix: AnimationController.dispose() called more than once. on multiple action show by @AntonioAEMartins +* fix: add extra bottom margin to account for keyboard by @MrLightful +* refactor: toast config and applyMediaQueryViewInsets as property by @payam-zahedi +* fix: add Media Query view padding as a margin to toast overlay by @payam-zahedi +* fix: add max line limit for title and description by @payam-zahedi ## 2.2.0 * Fix offset in description when title is null by @romatallinn diff --git a/pubspec.yaml b/pubspec.yaml index 0c2de3d..46ea11c 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -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: 2.2.0 +version: 2.3.0 homepage: https://payamzahedi.com/toastification/ repository: https://github.com/payam-zahedi/toastification topics: @@ -17,7 +17,7 @@ dependencies: flutter: sdk: flutter equatable: ^2.0.5 - uuid: ^4.4.2 + uuid: ^4.5.0 pausable_timer: ^3.1.0+3 collection: ^1.18.0 iconsax_flutter: ^1.0.0 From af14c4ac4ff00cc3dcc72000d6d0950abacf4681 Mon Sep 17 00:00:00 2001 From: Payam Zahedi Date: Sat, 21 Sep 2024 12:19:25 +0200 Subject: [PATCH 3/3] feat: bump example version --- example/pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/pubspec.yaml b/example/pubspec.yaml index 724c58e..d47afae 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -3,7 +3,7 @@ description: A new Flutter project. publish_to: "none" -version: 1.3.3+48 +version: 1.4.0+50 environment: sdk: ">=3.0.0 <4.0.0"