From 4a797bfd98e23e83b041a6d05cca116c54dac24c Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Mon, 19 Apr 2021 19:43:25 +0300 Subject: [PATCH] Update icons --- lib/ui/task/task_screen.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ui/task/task_screen.dart b/lib/ui/task/task_screen.dart index a8e4378e1..0362379e1 100644 --- a/lib/ui/task/task_screen.dart +++ b/lib/ui/task/task_screen.dart @@ -50,8 +50,8 @@ class TaskScreen extends StatelessWidget { ), appBarLeadingActions: [ IconButton( - icon: Icon(MdiIcons.trello), - color: state.prefState.showKanban ? state.accentColor : null, + icon: Icon( + state.prefState.showKanban ? Icons.view_list : MdiIcons.trello), onPressed: () { if (isDesktop(context) && !state.prefState.showKanban) { store.dispatch(ViewTask(taskId: ''));