From 8ce3805f4ebe0f6f3f06a86138db78150eccaa88 Mon Sep 17 00:00:00 2001 From: lemoer Date: Sat, 5 Jul 2025 22:29:13 +0200 Subject: [PATCH] Cleanup some widgets from home screen --- app/lib/main.dart | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/app/lib/main.dart b/app/lib/main.dart index aa8e4c2..71472cb 100644 --- a/app/lib/main.dart +++ b/app/lib/main.dart @@ -195,24 +195,7 @@ class _MyHomePageState extends State { child: Text("Oauth2 Login"), ), Text('Current output:'), - Consumer( - builder: - ( - BuildContext context, - AuthentikUserSettingsChangeDialogState dialogState, - Widget? child, - ) { - return Text( - dialogState.keysToKeep.isEmpty - ? 'No keys selected to keep.' - : 'Keys selected to keep: ${dialogState.keysToKeep.join(', ')}', - ); - }, - ), Text(outputText, style: Theme.of(context).textTheme.headlineMedium), - // Generated code for this Text Widget... - KeepOrDeleteKey(sshKey: "ssh-ed22519 abs csas blabla"), - KeepOrDeleteKey(sshKey: "ssh-ed22519 abs "), ], ), );