diff --git a/lib/screens/home/home_screen.dart b/lib/screens/home/home_screen.dart index 2103022..0501927 100644 --- a/lib/screens/home/home_screen.dart +++ b/lib/screens/home/home_screen.dart @@ -364,7 +364,10 @@ class _HomeScreenState extends State with TickerProviderStateMixin { return Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ - if (!_isLoggedIn) _buildLoginPrompt(theme, isDark), + if (!_isLoggedIn) ...[ + _buildLoginPrompt(theme, isDark), + const SizedBox(height: 20), + ], if (_isLoggedIn) const AccountBalanceWidget(), Row( mainAxisAlignment: MainAxisAlignment.spaceBetween,