@@ -169,20 +169,24 @@ class _FilterDrawerState extends State<FilterDrawer> {
169169 Container (
170170 decoration: BoxDecoration (
171171 color: tileColor,
172- borderRadius: BorderRadius .circular (8 ),
172+ borderRadius: BorderRadius .circular (2 ),
173173 border: Border .all (color: TaskWarriorColors .borderColor),
174174 ),
175- child: GestureDetector (
176- onTap:
177- widget.filters.toggleWaitingFilter,
178- child: Text (
179- 'Show waiting' ,
180- style: GoogleFonts .poppins (
181- color: (AppSettings .isDarkMode
182- ? TaskWarriorColors .kprimaryTextColor
183- : TaskWarriorColors .kLightSecondaryTextColor),
184- //
185- fontSize: TaskWarriorFonts .fontSizeLarge),
175+ child: Padding (
176+ padding: const EdgeInsets .all (8.0 ),
177+ child: GestureDetector (
178+ onTap:
179+ widget.filters.toggleWaitingFilter,
180+ child: Text (
181+ widget.filters.waitingFilter ? 'Show waiting' :
182+ 'Hide waiting' ,
183+ style: GoogleFonts .poppins (
184+ color: (AppSettings .isDarkMode
185+ ? TaskWarriorColors .kprimaryTextColor
186+ : TaskWarriorColors .kLightSecondaryTextColor),
187+ //
188+ fontSize: TaskWarriorFonts .fontSizeMedium,),
189+ ),
186190 ),
187191 ),
188192 ),
0 commit comments