We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5362b6 commit 975f5f5Copy full SHA for 975f5f5
lib/views/home/home.dart
@@ -229,6 +229,9 @@ class _HomePageState extends State<HomePage> {
229
} else {
230
ScaffoldMessenger.of(context).showSnackBar(
231
SnackBar(
232
+ backgroundColor: AppSettings.isDarkMode
233
+ ? TaskWarriorColors.ksecondaryBackgroundColor
234
+ : TaskWarriorColors.kLightSecondaryBackgroundColor,
235
content: Text(
236
'TaskServer is not configured',
237
style: TextStyle(
@@ -237,9 +240,6 @@ class _HomePageState extends State<HomePage> {
240
: TaskWarriorColors.black,
238
241
),
239
242
- backgroundColor: AppSettings.isDarkMode
- ? TaskWarriorColors.black
- : TaskWarriorColors.white,
243
action: SnackBarAction(
244
label: 'Set Up',
245
onPressed: () {
0 commit comments