File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
lib/app/modules/home/views Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -24,8 +24,9 @@ class TaskViewBuilder extends StatelessWidget {
24
24
@override
25
25
Widget build (BuildContext context) {
26
26
final HomeController taskController = Get .find <HomeController >();
27
- TaskwarriorColorTheme tColors = Theme .of (context).extension < TaskwarriorColorTheme > ()! ;
28
-
27
+ TaskwarriorColorTheme tColors =
28
+ Theme .of (context).extension < TaskwarriorColorTheme > ()! ;
29
+
29
30
return Obx (() {
30
31
List <Tasks > tasks = List <Tasks >.from (taskController.tasks);
31
32
// Filter tasks based on the selected project
@@ -187,7 +188,7 @@ class TaskViewBuilder extends StatelessWidget {
187
188
maxLines: 1 ,
188
189
overflow: TextOverflow .ellipsis,
189
190
style: GoogleFonts .poppins (
190
- color: tColors.dialogBackgroundColor ,
191
+ color: tColors.primaryTextColor ,
191
192
),
192
193
),
193
194
subtitle: Text (
You can’t perform that action at this time.
0 commit comments