import 'package:flutter_ics_homescreen/export.dart'; class SplashPage extends StatelessWidget { const SplashPage({super.key}); static Page page() => const MaterialPage(child: SplashPage()); @override Widget build(BuildContext context) { final size = MediaQuery.of(context).size; debugPrint(size.width.toString()); debugPrint(size.height.toString()); return Stack( children: [ SizedBox( width: double.infinity, height: double.infinity, child: SvgPicture.asset( 'assets/splashTextures.svg', alignment: Alignment.center, ), ), const Center(child: SplashContent()), ], ); } }