icon: Change some icons to outlined

This commit is contained in:
Calcitem 2021-07-03 19:57:31 +08:00
parent 6962cd0542
commit 37174db750
1 changed files with 6 additions and 6 deletions

View File

@ -78,12 +78,12 @@ class _HomeDrawerState extends State<HomeDrawer> {
DrawerListItem( DrawerListItem(
index: DrawerIndex.humanVsAi, index: DrawerIndex.humanVsAi,
title: S.of(context).humanVsAi, title: S.of(context).humanVsAi,
icon: Icon(Icons.person), icon: Icon(Icons.person_outline),
), ),
DrawerListItem( DrawerListItem(
index: DrawerIndex.humanVsHuman, index: DrawerIndex.humanVsHuman,
title: S.of(context).humanVsHuman, title: S.of(context).humanVsHuman,
icon: Icon(Icons.group), icon: Icon(Icons.people_outline),
), ),
DrawerListItem( DrawerListItem(
index: DrawerIndex.aiVsAi, index: DrawerIndex.aiVsAi,
@ -93,7 +93,7 @@ class _HomeDrawerState extends State<HomeDrawer> {
DrawerListItem( DrawerListItem(
index: DrawerIndex.preferences, index: DrawerIndex.preferences,
title: S.of(context).preferences, title: S.of(context).preferences,
icon: Icon(Icons.settings), icon: Icon(Icons.settings_outlined),
), ),
DrawerListItem( DrawerListItem(
index: DrawerIndex.ruleSettings, index: DrawerIndex.ruleSettings,
@ -103,7 +103,7 @@ class _HomeDrawerState extends State<HomeDrawer> {
DrawerListItem( DrawerListItem(
index: DrawerIndex.personalization, index: DrawerIndex.personalization,
title: S.of(context).personalization, title: S.of(context).personalization,
icon: Icon(Icons.color_lens), icon: Icon(Icons.color_lens_outlined),
), ),
DrawerListItem( DrawerListItem(
index: DrawerIndex.feedback, index: DrawerIndex.feedback,
@ -113,12 +113,12 @@ class _HomeDrawerState extends State<HomeDrawer> {
DrawerListItem( DrawerListItem(
index: DrawerIndex.Help, index: DrawerIndex.Help,
title: S.of(context).help, title: S.of(context).help,
icon: Icon(Icons.help), icon: Icon(Icons.help_outline),
), ),
DrawerListItem( DrawerListItem(
index: DrawerIndex.About, index: DrawerIndex.About,
title: S.of(context).about, title: S.of(context).about,
icon: Icon(Icons.info), icon: Icon(Icons.info_outline),
), ),
]; ];