Skip to content

Commit ecbed70

Browse files
committed
Use a better icon
1 parent fbc4f16 commit ecbed70

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/widgets/core/settings.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ class _SettingsPageState extends State<SettingsPage> {
7070
@override
7171
Widget build(BuildContext context) {
7272
final exerciseProvider = Provider.of<ExercisesProvider>(context, listen: false);
73-
final today = DateTime.now();
7473

7574
return Scaffold(
7675
appBar: AppBar(
@@ -84,7 +83,7 @@ class _SettingsPageState extends State<SettingsPage> {
8483
subtitle: Text(AppLocalizations.of(context).settingsCacheDescription),
8584
trailing: IconButton(
8685
key: const ValueKey('cacheIcon'),
87-
icon: const Icon(Icons.cached),
86+
icon: const Icon(Icons.delete),
8887
onPressed: () async {
8988
await exerciseProvider.clearAllCachesAndPrefs();
9089

0 commit comments

Comments
 (0)