import 'package:flutter/material.dart'; /// Loading gate shown by the `/splash` route while auth resolves on launch. /// Visually matches the native Android launch splash (new logo on white), so /// the user only ever sees one splash with the current icon — no flash of the /// old `splash_chat_hebat` image. class SplashScreen extends StatelessWidget { const SplashScreen({super.key}); @override Widget build(BuildContext context) { return Scaffold( backgroundColor: Colors.white, body: Center( child: Image.asset( 'assets/icons/logo.png', width: 200, ), ), ); } }