diff --git a/lib/Pages/Misc/account_select.dart b/lib/Pages/Misc/account_select.dart index 9802e22..12f6b1b 100644 --- a/lib/Pages/Misc/account_select.dart +++ b/lib/Pages/Misc/account_select.dart @@ -67,7 +67,17 @@ class _AccountSelectState extends State { ), ); } else if (_selected == null && _accounts.isEmpty) { - return const Text(''); + return TextButton( + onPressed: _accountController.newAccountHandler, + child: const Row( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Icon(Icons.account_balance_wallet), + SizedBox(width: 10), + Text('Konto hinzufügen'), + ], + ), + ); } else { return const CircularProgressIndicator(); }