diff --git a/lib/pages/splash_page.dart b/lib/pages/splash_page.dart index f7637cf..43a7bfb 100644 --- a/lib/pages/splash_page.dart +++ b/lib/pages/splash_page.dart @@ -28,7 +28,11 @@ class _SplashPageState extends State { if (snapshot.hasData) { return _getContent(); } - return const Scaffold(body: Center(child: CircularProgressIndicator())); + return const Scaffold( + body: Center( + child: CircularProgressIndicator(), + ), + ); }, ); }