Add tooltip to icon button in chat screen

This commit is contained in:
2025-12-21 22:20:34 +08:00
parent b258df56c9
commit fb62ce7735

View File

@@ -496,6 +496,7 @@ class ChatListScreen extends HookConsumerWidget {
),
color: appbarFeColor,
onPressed: () => tabController.animateTo(0),
tooltip: 'chatTabAll'.tr(),
),
IconButton(
icon: Icon(
@@ -504,6 +505,7 @@ class ChatListScreen extends HookConsumerWidget {
),
color: appbarFeColor,
onPressed: () => tabController.animateTo(1),
tooltip: 'chatTabDirect'.tr(),
),
IconButton(
icon: Icon(
@@ -512,6 +514,7 @@ class ChatListScreen extends HookConsumerWidget {
),
color: appbarFeColor,
onPressed: () => tabController.animateTo(2),
tooltip: 'chatTabGroup'.tr(),
),
],
),