Files
iiEsaywebUIapp/lib/features/navigation/views/splash_launcher_page.dart
2025-08-10 01:20:45 +05:30

26 lines
654 B
Dart

import 'package:flutter/material.dart';
import '../../../shared/theme/theme_extensions.dart';
class SplashLauncherPage extends StatelessWidget {
const SplashLauncherPage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: context.conduitTheme.surfaceBackground,
body: Center(
child: SizedBox(
width: 28,
height: 28,
child: CircularProgressIndicator(
strokeWidth: 2.5,
valueColor: AlwaysStoppedAnimation<Color>(
context.conduitTheme.loadingIndicator,
),
),
),
),
);
}
}