chore: format

This commit is contained in:
Tien Do Nam
2024-11-23 01:42:59 +01:00
parent 49fb2d8010
commit 0986cd105e
+4 -4
View File
@@ -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(