updated project linter-rules and enforced them

This commit is contained in:
2024-03-29 18:22:55 +01:00
parent 21e11b6c2a
commit 75846750f7
113 changed files with 553 additions and 554 deletions

View File

@ -11,7 +11,7 @@ import '../../../widget/placeholderView.dart';
import 'jsonViewer.dart';
class CacheView extends StatefulWidget {
final collection = "MarianumMobile";
final collection = 'MarianumMobile';
const CacheView({super.key});
@override
@ -42,7 +42,7 @@ class _CacheViewState extends State<CacheView> {
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text("Lokaler cache"),
title: const Text('Lokaler cache'),
),
body: FutureBuilder(
future: files,
@ -52,7 +52,7 @@ class _CacheViewState extends State<CacheView> {
itemCount: snapshot.data!.length,
itemBuilder: (context, index) {
Map<String, dynamic> element = snapshot.data![snapshot.data!.keys.elementAt(index)];
String filename = snapshot.data!.keys.elementAt(index).split("/").last;
String filename = snapshot.data!.keys.elementAt(index).split('/').last;
return ListTile(
leading: const Icon(Icons.text_snippet_outlined),
@ -70,11 +70,11 @@ class _CacheViewState extends State<CacheView> {
children: [
const ListTile(
leading: Icon(Icons.delete_forever),
title: Text("Diese Datei löschen"),
title: Text('Diese Datei löschen'),
),
ListTile(
leading: const Icon(Icons.copy),
title: const Text("Dateitext kopieren"),
title: const Text('Dateitext kopieren'),
onTap: () {
Clipboard.setData(ClipboardData(text: jsonEncode(element)));
Navigator.of(context).pop();
@ -93,7 +93,7 @@ class _CacheViewState extends State<CacheView> {
);
} else {
return const Center(
child: PlaceholderView(icon: Icons.hourglass_empty, text: "Keine Daten"),
child: PlaceholderView(icon: Icons.hourglass_empty, text: 'Keine Daten'),
);
}
},