Bump pub packages to newest version

This commit is contained in:
2023-05-31 20:18:05 +02:00
parent d71f0d3339
commit b41fba0cda
10 changed files with 65 additions and 74 deletions

View File

@ -61,8 +61,8 @@ class _DebugOverviewState extends State<DebugOverview> {
return ListTile(
leading: const Icon(Icons.text_snippet_outlined),
title: Text(filename),
subtitle: Text("${filesize(getValue(index).toString().length * 8)}, ${Jiffy.unixFromMillisecondsSinceEpoch(getValue(index)['lastupdate']).fromNow()}"),
trailing: Icon(Icons.chevron_right),
subtitle: Text("${filesize(getValue(index).toString().length * 8)}, ${Jiffy.parseFromMillisecondsSinceEpoch(getValue(index)['lastupdate']).fromNow()}"),
trailing: const Icon(Icons.chevron_right),
textColor: Colors.black,
onTap: () {
Navigator.push(context, MaterialPageRoute(builder: (context) {
@ -73,13 +73,13 @@ class _DebugOverviewState extends State<DebugOverview> {
showDialog(context: context, builder: (context) {
return SimpleDialog(
children: [
ListTile(
const ListTile(
leading: Icon(Icons.delete_forever),
title: Text("Diese Datei löschen"),
),
ListTile(
leading: Icon(Icons.copy),
title: Text("Dateitext kopieren"),
leading: const Icon(Icons.copy),
title: const Text("Dateitext kopieren"),
onTap: () {
Clipboard.setData(ClipboardData(text: getValue(index).toString()));
Navigator.of(context).pop();