Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
Tienisto committed Nov 23, 2024
1 parent 49fb2d8 commit 0986cd1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/lib/pages/progress_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -433,14 +433,14 @@ class _ProgressPageState extends State<ProgressPage> with Refena {
),
const SizedBox(height: 5),
TweenAnimationBuilder<double>(
tween: Tween<double>(begin:0, end:_totalBytes == 0 ? 0 : currBytes / _totalBytes),
tween: Tween<double>(begin: 0, end: _totalBytes == 0 ? 0 : currBytes / _totalBytes),
duration: Duration(seconds: 1),
curve: Curves.easeOut,
builder: (context, value, child) {
return CustomProgressBar(
progress: value,
borderRadius: 5,
);
progress: value,
borderRadius: 5,
);
},
),
AnimatedCrossFade(
Expand Down

0 comments on commit 0986cd1

Please sign in to comment.