import 'package:flutter/material.dart'; class SplashScreen extends StatelessWidget { const SplashScreen({super.key}); @override Widget build(BuildContext context) { return const Scaffold( body: Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ Icon(Icons.favorite, size: 80, color: Colors.blue), SizedBox(height: 24), Text( 'Halo Bestie Mitra', style: TextStyle(fontSize: 28, fontWeight: FontWeight.bold), ), SizedBox(height: 32), CircularProgressIndicator(), ], ), ), ); } }