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
+1
View File
@@ -1121,6 +1121,7 @@ class _ChannelChatScreenState extends State<ChannelChatScreen> {
const SizedBox(width: 8),
IconButton(
icon: const Icon(Icons.send),
tooltip: context.l10n.chat_sendMessage,
onPressed: _sendMessage,
color: Theme.of(context).colorScheme.primary,
),
+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),
),
],