From 93ea258ea05d869da2ac6996bd90b48525715eba Mon Sep 17 00:00:00 2001 From: SomnusVeritas Date: Fri, 20 Oct 2023 20:12:50 +0200 Subject: [PATCH] minor code cleanup --- lib/pages/splash_page.dart | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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(), + ), + ); }, ); }