diff --git a/lib/new_ui/screens/splash_screen/splash_screen.dart b/lib/new_ui/screens/splash_screen/splash_screen.dart index e2bbf48..bd42ba2 100644 --- a/lib/new_ui/screens/splash_screen/splash_screen.dart +++ b/lib/new_ui/screens/splash_screen/splash_screen.dart @@ -116,13 +116,15 @@ class _SplashScreenState extends ConsumerState { return MainScreen(); } } else { - return Scaffold( + return const Scaffold( body: Center( - child: SizedBox( - child: Lottie.asset("assets/animation/loadinglottie.json"), - height: 250, - width: 250, - ), + child: CircularProgressIndicator(), + + // child: SizedBox( + // child: Lottie.asset("assets/animation/loadinglottie.json"), + // height: 250, + // width: 250, + // ), ), ); }