Fixed web loading screen and setup related issues

This commit is contained in:
2026-09-01 07:38:45 +05:30
parent a0e7a898fa
commit bfe0c1efbd
14 changed files with 268 additions and 131 deletions

View File

@@ -131,19 +131,28 @@ class _AuthScreenState extends ConsumerState<AuthScreen>
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
Container(
width: 80,
height: 80,
decoration: const BoxDecoration(
color: Colors.transparent,
shape: BoxShape.circle,
),
child: Center(
child: Image.asset(
'assets/logo.png',
width: 80,
height: 80,
fit: BoxFit.contain,
Center(
child: Container(
width: 80,
height: 80,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(20),
boxShadow: [
BoxShadow(
color: Colors.black.withValues(alpha: 0.08),
blurRadius: 16,
offset: const Offset(0, 4),
),
],
),
child: ClipRRect(
borderRadius: BorderRadius.circular(20),
child: Image.asset(
'assets/icon.png',
width: 80,
height: 80,
fit: BoxFit.cover,
),
),
),
),