From 1e059c56499c601370fde43ed353df5496690e15 Mon Sep 17 00:00:00 2001 From: Sahil Yeole Date: Tue, 24 Oct 2023 23:15:42 +0530 Subject: [PATCH] update peer view type icons Signed-off-by: Sahil Yeole --- flutter/lib/common/widgets/peer_tab_page.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/flutter/lib/common/widgets/peer_tab_page.dart b/flutter/lib/common/widgets/peer_tab_page.dart index 63d9e18f8..4e75af636 100644 --- a/flutter/lib/common/widgets/peer_tab_page.dart +++ b/flutter/lib/common/widgets/peer_tab_page.dart @@ -237,7 +237,9 @@ class _PeerTabPageState extends State child: Icon( peerCardUiType.value == PeerUiType.grid ? Icons.view_list_rounded - : Icons.grid_view_rounded, + : peerCardUiType.value == PeerUiType.tile + ? Icons.view_agenda_rounded + : Icons.grid_view_rounded, size: 18, color: textColor, ))));