From ca5ed909e540d1ef44508ece99137422b3b87d17 Mon Sep 17 00:00:00 2001 From: Calcitem Date: Sat, 3 Jul 2021 23:51:41 +0800 Subject: [PATCH] Revert "icon: Add circle to person icon in main menu" This reverts commit 9fd239b93afc0e4cabc6053a5ab09767c2a53cbf. --- src/ui/flutter_app/lib/widgets/home_drawer.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui/flutter_app/lib/widgets/home_drawer.dart b/src/ui/flutter_app/lib/widgets/home_drawer.dart index 99879468..c946160a 100644 --- a/src/ui/flutter_app/lib/widgets/home_drawer.dart +++ b/src/ui/flutter_app/lib/widgets/home_drawer.dart @@ -78,12 +78,12 @@ class _HomeDrawerState extends State { DrawerListItem( index: DrawerIndex.humanVsAi, title: S.of(context).humanVsAi, - icon: Icon(Icons.account_circle_outlined), + icon: Icon(Icons.person_outline), ), DrawerListItem( index: DrawerIndex.humanVsHuman, title: S.of(context).humanVsHuman, - icon: Icon(Icons.supervised_user_circle_outlined), + icon: Icon(Icons.people_outline), ), DrawerListItem( index: DrawerIndex.aiVsAi,