feat: Swap colors for completed and remaining tasks in tasks overview
This commit is contained in:
parent
4d11a2ccf0
commit
bf84ef4786
@ -110,8 +110,8 @@ class DashboardOverviewWidgets {
|
||||
final double percent = total > 0 ? completed / total : 0.0;
|
||||
|
||||
// Task colors
|
||||
const completedColor = Color(0xFFE57373); // red
|
||||
const remainingColor = Color(0xFF64B5F6); // blue
|
||||
const completedColor = Color(0xFF64B5F6);
|
||||
const remainingColor =Color(0xFFE57373);
|
||||
|
||||
final List<_ChartData> pieData = [
|
||||
_ChartData('Completed', completed.toDouble(), completedColor),
|
||||
|
Loading…
x
Reference in New Issue
Block a user