From 0d8b549f1fce2feb7b0fe535f7ae828399c4be25 Mon Sep 17 00:00:00 2001 From: igoogolx <27353191+igoogolx@users.noreply.github.com> Date: Mon, 30 Dec 2024 19:56:20 +0800 Subject: [PATCH] v1.25.0 (#54) * chore: v1.25.0 * fix(App): progress indicator not working --- lib/progress_indicator.dart | 2 +- pubspec.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/progress_indicator.dart b/lib/progress_indicator.dart index dd4c883..080b9e1 100644 --- a/lib/progress_indicator.dart +++ b/lib/progress_indicator.dart @@ -17,7 +17,7 @@ class _AppProgressIndicatorState extends State void initState() { controller = AnimationController( vsync: this, - duration: const Duration(seconds: 1000), + duration: const Duration(seconds: 1), )..addListener(() { setState(() {}); }); diff --git a/pubspec.yaml b/pubspec.yaml index 02cad6b..46a779a 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # In Windows, build-name is used as the major, minor, and patch parts # of the product and file versions while build-number is used as the build suffix. -version: 1.25.0-beat.2 +version: 1.25.0 environment: sdk: '>=3.0.6 <4.0.0'