2025-08-10 01:20:45 +05:30
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
import '../../../shared/theme/theme_extensions.dart';
|
2026-02-19 23:21:16 +05:00
|
|
|
import '../../../shared/widgets/ii_easy_loading_logo.dart';
|
2025-08-10 01:20:45 +05:30
|
|
|
|
|
|
|
|
class SplashLauncherPage extends StatelessWidget {
|
|
|
|
|
const SplashLauncherPage({super.key});
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
2026-02-19 23:21:16 +05:00
|
|
|
final isDark = context.conduitTheme.isDark;
|
2025-08-10 01:20:45 +05:30
|
|
|
return Scaffold(
|
2026-02-19 23:21:16 +05:00
|
|
|
backgroundColor: isDark
|
|
|
|
|
? const Color(0xFF0A0A0A)
|
|
|
|
|
: Colors.white,
|
|
|
|
|
body: IiEasyLoadingLogo(isDark: isDark),
|
2025-08-10 01:20:45 +05:30
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|