feat: Display warning banner on unverified devices

This commit is contained in:
krille-chan 2024-10-12 21:50:15 +02:00
commit d8acd92023
No known key found for this signature in database
6 changed files with 73 additions and 2 deletions

View file

@ -34,7 +34,10 @@ class FluffyChatApp extends StatelessWidget {
// Router must be outside of build method so that hot reload does not reset
// the current path.
static final GoRouter router = GoRouter(routes: AppRoutes.routes);
static final GoRouter router = GoRouter(
routes: AppRoutes.routes,
debugLogDiagnostics: true,
);
@override
Widget build(BuildContext context) {