We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbc4f16 commit ecbed70Copy full SHA for ecbed70
lib/widgets/core/settings.dart
@@ -70,7 +70,6 @@ class _SettingsPageState extends State<SettingsPage> {
70
@override
71
Widget build(BuildContext context) {
72
final exerciseProvider = Provider.of<ExercisesProvider>(context, listen: false);
73
- final today = DateTime.now();
74
75
return Scaffold(
76
appBar: AppBar(
@@ -84,7 +83,7 @@ class _SettingsPageState extends State<SettingsPage> {
84
83
subtitle: Text(AppLocalizations.of(context).settingsCacheDescription),
85
trailing: IconButton(
86
key: const ValueKey('cacheIcon'),
87
- icon: const Icon(Icons.cached),
+ icon: const Icon(Icons.delete),
88
onPressed: () async {
89
await exerciseProvider.clearAllCachesAndPrefs();
90
0 commit comments