FLUTTER ECOSYSTEM

the-best-is-best/tbib_splash_screen

init

tbib_splash_screen project cover
Stars
2
Forks
2
Last push (UTC)
Apr 14, 2023
Project status
Active
Michelle Raouf GitHub avatar
GITHUB User

Michelle Raouf ↗

LanguagesDartC++CMakeRubyHTMLCSwiftKotlinObjective-C

Dependencies used

Dependency list 5 items

Original README

English project snapshot. Visit GitHub for the latest content.

Expand / collapse project README

TBIB Splash Screen

this package work with Animated Text Kit to animated text

see all animated text in Animated Text Kit

Alert removed create native splash screen

you can use navigate where app is loaded

       SplashScreenView(
               navigateWhere: isLoaded,
               navigateRoute: const HomeScreen(),
               text: WavyAnimatedText(
                 "Splash Screen",
                 textStyle: const TextStyle(
                   color: Colors.red,
                   fontSize: 32.0,
                   fontWeight: FontWeight.bold,
                 ),
               ),
               imageSrc: "assets/logo_light.png",
             ),

you can use use lottie package

        SplashScreenView(
            navigateWhere: isLoaded,
            navigateRoute: const HomeScreen(),
            text: WavyAnimatedText(
                "Splash Screen",
                textStyle: const TextStyle(
                color: Colors.red,
                fontSize: 32.0,
                fontWeight: FontWeight.bold,
                ),
            ),
            imageSrc: "assets/logo_light_lottie.json",
            //  displayLoading: false,
      );