Added central user credentials management

This commit is contained in:
2023-06-11 18:18:37 +02:00
parent 04c244503e
commit 1521056217
22 changed files with 207 additions and 159 deletions

View File

@ -7,7 +7,7 @@ import 'package:flutter/services.dart';
import 'package:jiffy/jiffy.dart';
import 'package:localstore/localstore.dart';
import '../../../widget/errorView.dart';
import '../../../widget/placeholderView.dart';
import 'jsonViewer.dart';
class CacheView extends StatefulWidget {
@ -93,7 +93,7 @@ class _CacheViewState extends State<CacheView> {
);
} else {
return const Center(
child: ErrorView(icon: Icons.hourglass_empty, text: "Keine Daten"),
child: PlaceholderView(icon: Icons.hourglass_empty, text: "Keine Daten"),
);
}
},