This commit is contained in:
Leon Bösche
2025-12-17 23:45:39 +01:00
parent 7749ebfd08
commit ab7c734ae7

View File

@@ -240,7 +240,9 @@ class _HomePageState extends State<HomePage> with TickerProviderStateMixin {
} else if (!isLoggedIn) { } else if (!isLoggedIn) {
_animationController.reverse(); _animationController.reverse();
} }
return AnimatedContainer( return Padding(
padding: const EdgeInsets.only(top: 42.0),
child: AnimatedContainer(
duration: const Duration(milliseconds: 350), duration: const Duration(milliseconds: 350),
curve: Curves.easeInOut, curve: Curves.easeInOut,
width: isLoggedIn width: isLoggedIn
@@ -298,7 +300,9 @@ class _HomePageState extends State<HomePage> with TickerProviderStateMixin {
const SizedBox(height: 8), const SizedBox(height: 8),
_buildOrgRow(context), _buildOrgRow(context),
Expanded( Expanded(
child: _buildDrive(orgState), child: _buildDrive(
orgState,
),
), ),
], ],
); );
@@ -434,12 +438,13 @@ class _HomePageState extends State<HomePage> with TickerProviderStateMixin {
), ),
), ),
), ),
),
); );
}, },
), ),
), ),
Positioned( Positioned(
top: 10, top: 0,
left: 0, left: 0,
right: 0, right: 0,
child: Center( child: Center(
@@ -447,7 +452,7 @@ class _HomePageState extends State<HomePage> with TickerProviderStateMixin {
'b0esche.cloud', 'b0esche.cloud',
style: TextStyle( style: TextStyle(
fontFamily: 'PixelatedElegance', fontFamily: 'PixelatedElegance',
fontSize: 42, fontSize: 48,
color: AppTheme.primaryText, color: AppTheme.primaryText,
decoration: TextDecoration.underline, decoration: TextDecoration.underline,
decorationColor: AppTheme.primaryText, decorationColor: AppTheme.primaryText,