Some checks failed
L10n / l10n (push) Has been cancelled
Co-authored-by: Cursor <cursoragent@cursor.com>
19 lines
520 B
Dart
19 lines
520 B
Dart
import 'package:flutter/material.dart';
|
|
import '../../../shared/theme/theme_extensions.dart';
|
|
import '../../../shared/widgets/ii_easy_loading_logo.dart';
|
|
|
|
class SplashLauncherPage extends StatelessWidget {
|
|
const SplashLauncherPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final isDark = context.conduitTheme.isDark;
|
|
return Scaffold(
|
|
backgroundColor: isDark
|
|
? const Color(0xFF0A0A0A)
|
|
: Colors.white,
|
|
body: IiEasyLoadingLogo(isDark: isDark),
|
|
);
|
|
}
|
|
}
|