cleared console problems

This commit is contained in:
amirrezaghabeli
2025-09-16 08:36:03 +03:30
parent b6a3598cbf
commit c421f85c95
67 changed files with 236 additions and 196 deletions
+4 -2
View File
@@ -37,7 +37,7 @@ class _ProgressBarColumnState extends State<ProgressBarColumn>
// Initialize the animation controller
_controller = AnimationController(
vsync: this,
duration: Duration(milliseconds: 2000), // duration of the animation
duration: const Duration(milliseconds: 2000), // duration of the animation
);
// Create a Tween animation from 0.0 to 0.75
@@ -81,7 +81,9 @@ class _ProgressBarColumnState extends State<ProgressBarColumn>
backgroundColor: AppColors.grey10,
strokeCap: StrokeCap.round,
strokeWidth: widget.strokeWidth ?? 6.0,
valueColor: AlwaysStoppedAnimation<Color>(AppColors.jellyBean),
valueColor: const AlwaysStoppedAnimation<Color>(
AppColors.jellyBean,
),
value: _animation.value,
),
),