diff --git a/lib/components/home/list_item.dart b/lib/components/home/list_item.dart index fb7f235..b13523a 100644 --- a/lib/components/home/list_item.dart +++ b/lib/components/home/list_item.dart @@ -144,8 +144,11 @@ class _ListItemState extends State ], ), if (topic.nodeName.isNotEmpty) ...[ - NodeTag( - nodeId: topic.nodeId, nodeName: topic.nodeName, route: 'home') + Opacity( + opacity: topic.readStatus == 'unread' ? 1 : 0.6, + child: NodeTag( + nodeId: topic.nodeId, nodeName: topic.nodeName, route: 'home'), + ), ] ], ),