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