import 'package:flutter/material.dart'; import '../../core/config/app_config.dart'; /// شاشة الإقلاع. في م3 تتولّى استعادة الجلسة والتوجيه؛ الآن تثبت فقط أن /// السقالة والأصول والخطوط تعمل (بوابة م1). class SplashPage extends StatelessWidget { const SplashPage({super.key}); @override Widget build(BuildContext context) { final scheme = Theme.of(context).colorScheme; return Scaffold( body: Center( child: Column( mainAxisSize: MainAxisSize.min, children: [ Image.asset( 'assets/images/logo.png', width: 140, height: 140, fit: BoxFit.contain, ), const SizedBox(height: 24), Text( 'Tripz', style: Theme.of(context).textTheme.headlineMedium?.copyWith( fontWeight: FontWeight.w700, color: scheme.primary, ), ), const SizedBox(height: 8), Text( AppConfig.appRole == 'driver' ? 'تطبيق السائق' : 'تطبيق الراكب', style: Theme.of(context).textTheme.bodyMedium?.copyWith( color: scheme.onSurfaceVariant, ), ), const SizedBox(height: 32), const SizedBox( width: 28, height: 28, child: CircularProgressIndicator(strokeWidth: 2.5), ), ], ), ), ); } }