cleared console problems
This commit is contained in:
@@ -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,
|
||||
),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user