From 8fe64755ecdccfa4e027b9ad74dd4fca79dd2534 Mon Sep 17 00:00:00 2001 From: Sahil Yeole Date: Thu, 26 Oct 2023 04:46:24 +0530 Subject: [PATCH] fix icon ui not updating Signed-off-by: Sahil Yeole --- flutter/lib/common/widgets/peer_tab_page.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/flutter/lib/common/widgets/peer_tab_page.dart b/flutter/lib/common/widgets/peer_tab_page.dart index fb7ef39b2..8510adee3 100644 --- a/flutter/lib/common/widgets/peer_tab_page.dart +++ b/flutter/lib/common/widgets/peer_tab_page.dart @@ -791,6 +791,7 @@ class _PeerViewDropdownState extends State { (PeerUiType? v) async { if (v != null) { peerCardUiType.value = v; + setState(() {}); await bind.setLocalFlutterOption( k: "peer-card-ui-type", v: peerCardUiType.value.index.toString(),