resolved pr comments

This commit is contained in:
2024-05-12 15:07:57 +02:00
parent 8ff993bf19
commit a57f42d4ed
5 changed files with 10 additions and 10 deletions

View File

@ -113,10 +113,7 @@ class _DevToolsSettingsDialogState extends State<DevToolsSettingsDialog> {
ListTile(
leading: const CenteredLeading(Icon(Icons.data_object)),
title: const Text('BLOC State cache'),
subtitle: FutureBuilder(
future: const CacheView().totalSize(),
builder: (context, snapshot) => Text("etwa ${snapshot.hasError ? "?" : snapshot.hasData ? filesize(snapshot.data) : "..."}\nLange tippen um zu löschen"),
),
subtitle: const Text('Lange tippen um zu löschen'),
onTap: () {
// Navigator.push(context, MaterialPageRoute(builder: (context) => const CacheView()));
},