fix: Missing tooltips in IconButtons
This commit is contained in:
parent
2c8259b849
commit
b832287b88
12 changed files with 43 additions and 1 deletions
|
|
@ -103,6 +103,7 @@ class _Settings3PidState extends State<Settings3Pid> {
|
|||
IconButton(
|
||||
icon: Icon(Icons.add_outlined),
|
||||
onPressed: () => _add3PidAction(context),
|
||||
tooltip: L10n.of(context).addEmail,
|
||||
)
|
||||
],
|
||||
),
|
||||
|
|
@ -153,6 +154,7 @@ class _Settings3PidState extends State<Settings3Pid> {
|
|||
child: Icon(identifier[i].iconData)),
|
||||
title: Text(identifier[i].address),
|
||||
trailing: IconButton(
|
||||
tooltip: L10n.of(context).delete,
|
||||
icon: Icon(Icons.delete_forever_outlined),
|
||||
color: Colors.red,
|
||||
onPressed: () => _delete3Pid(context, identifier[i]),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue