From 3bfce1487eae49f5ea96082cde33d974048ea6d5 Mon Sep 17 00:00:00 2001 From: "artem.abramov" Date: Thu, 16 Feb 2023 11:23:38 +0400 Subject: [PATCH] Upgraded dependencies --- CHANGELOG.md | 3 +++ lib/ui/widget/alice_call_list_item_widget.dart | 4 ++-- pubspec.lock | 10 +++++----- pubspec.yaml | 8 ++++---- 4 files changed, 14 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 28122211..96a5e276 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## [3.4.0] +- Upgraded dependencies + ## [3.3.0] - Incremented the Flutter SDK version to 3.7.0 diff --git a/lib/ui/widget/alice_call_list_item_widget.dart b/lib/ui/widget/alice_call_list_item_widget.dart index b44c7035..7f3cd0a6 100644 --- a/lib/ui/widget/alice_call_list_item_widget.dart +++ b/lib/ui/widget/alice_call_list_item_widget.dart @@ -169,7 +169,7 @@ class AliceCallListItemWidget extends StatelessWidget { if (status == -1) { return AliceConstants.red; } else if (status < 200) { - return Theme.of(context).textTheme.bodyText1?.color ?? Colors.green; + return Theme.of(context).textTheme.bodyLarge?.color ?? Colors.green; } else if (status >= 200 && status < 300) { return AliceConstants.green; } else if (status >= 300 && status < 400) { @@ -177,7 +177,7 @@ class AliceCallListItemWidget extends StatelessWidget { } else if (status >= 400 && status < 600) { return AliceConstants.red; } else { - return Theme.of(context).textTheme.bodyText1?.color ?? Colors.black; + return Theme.of(context).textTheme.bodyLarge?.color ?? Colors.black; } } diff --git a/pubspec.lock b/pubspec.lock index ac72b329..f830350c 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -45,10 +45,10 @@ packages: dependency: "direct main" description: name: dio - sha256: "7d328c4d898a61efc3cd93655a0955858e29a0aa647f0f9e02d59b3bb275e2e8" + sha256: "9fdbf71baeb250fc9da847f6cb2052196f62c19906a3657adfc18631a667d316" url: "https://pub.dev" source: hosted - version: "4.0.6" + version: "5.0.0" ffi: dependency: transitive description: @@ -215,10 +215,10 @@ packages: dependency: "direct main" description: name: share_plus - sha256: e387077716f80609bb979cd199331033326033ecd1c8f200a90c5f57b1c9f55e + sha256: "8c6892037b1824e2d7e8f59d54b3105932899008642e6372e5079c6939b4b625" url: "https://pub.dev" source: hosted - version: "6.3.0" + version: "6.3.1" share_plus_platform_interface: dependency: transitive description: @@ -329,5 +329,5 @@ packages: source: hosted version: "0.2.0+3" sdks: - dart: ">=2.18.0 <4.0.0" + dart: ">=2.18.0 <3.0.0" flutter: ">=3.0.0" diff --git a/pubspec.yaml b/pubspec.yaml index 6f782725..c95eabe7 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: alice_lightweight description: Lightweight Alice version. Removed additional dependencies except dio. -version: 3.3.0 +version: 3.4.0 homepage: https://github.com/jhomlala/alice environment: @@ -10,7 +10,7 @@ dependencies: flutter: sdk: flutter http: ^0.13.5 - dio: ^4.0.6 + dio: ^5.0.0 rxdart: ^0.27.7 - share_plus: ^6.3.0 - path_provider: ^2.0.11 + share_plus: ^6.3.1 + path_provider: ^2.0.12