add tooltip to send message buttons

This commit is contained in:
Enot (ded) Skelly
2026-04-08 08:22:13 -07:00
parent 637e08d22c
commit c4f54efd77
23 changed files with 238 additions and 97 deletions
+3
View File
@@ -591,6 +591,9 @@ class _ChatScreenState extends State<ChatScreen> {
const SizedBox(width: 8),
IconButton.filled(
icon: const Icon(Icons.send),
tooltip: context.l10n.chat_sendMessageTo(
_resolveContact(connector).name,
),
onPressed: () => _sendMessage(connector),
),
],