diff --git a/lib/components/task.dart b/lib/components/task.dart index 30fd2ce..0312779 100644 --- a/lib/components/task.dart +++ b/lib/components/task.dart @@ -85,11 +85,14 @@ class _TaskView extends State { child: Column(children: [ _buildText(context), LinearPercentIndicator( + animation: true, + animateFromLastPercent: true, progressColor: Colors.green, lineHeight: 20.0, barRadius: const Radius.circular(10), padding: EdgeInsets.zero, - center: Text(percentText), + center: + Text(percentText, style: const TextStyle(color: Colors.black)), percent: percent, ), ]),