Skip to content

Commit

Permalink
Fixed the color
Browse files Browse the repository at this point in the history
  • Loading branch information
BrawlerXull committed Jun 2, 2024
1 parent e6d891c commit dff6c57
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions lib/app/modules/home/views/project_column_home_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class ProjectsColumn extends StatelessWidget {
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
const Text(
Text(
"Project : ",
// style: GoogleFonts.poppins(
// fontWeight: TaskWarriorFonts.bold,
Expand All @@ -39,6 +39,14 @@ class ProjectsColumn extends StatelessWidget {
// ? TaskWarriorColors.white
// : TaskWarriorColors.black,
// ),
style: TextStyle(
fontFamily: FontFamily.poppins,
fontWeight: TaskWarriorFonts.bold,
fontSize: TaskWarriorFonts.fontSizeSmall,
color: AppSettings.isDarkMode
? TaskWarriorColors.white
: TaskWarriorColors.black,
),
),
SizedBox(
child: SingleChildScrollView(
Expand Down Expand Up @@ -217,10 +225,10 @@ class ProjectTile extends StatelessWidget {
: '(${node.tasks}) ${node.subtasks}',
maxLines: 1,
style: GoogleFonts.poppins(
color: AppSettings.isDarkMode
? TaskWarriorColors.black
: TaskWarriorColors.white,
),
color: AppSettings.isDarkMode
? TaskWarriorColors.black
: TaskWarriorColors.white,
),
),
),
],
Expand Down

0 comments on commit dff6c57

Please sign in to comment.