Fix missing tooltip

This commit is contained in:
Ming Ming 2021-07-03 03:47:01 +08:00
parent 743dd7c081
commit ea5706161d

View file

@ -38,11 +38,13 @@ class _AccountPickerDialogState extends State<AccountPickerDialog> {
title: Text(a.url),
subtitle: Text(a.username),
trailing: IconButton(
icon: Icon(
Icons.close,
color: AppTheme.getSecondaryTextColor(context),
),
onPressed: () => _onRemoveItemPressed(a)),
icon: Icon(
Icons.close,
color: AppTheme.getSecondaryTextColor(context),
),
tooltip: AppLocalizations.of(context).deleteTooltip,
onPressed: () => _onRemoveItemPressed(a),
),
),
))
.toList();