FLUTTER ECOSYSTEM

the-best-is-best/tbib_splash_screen

iniciar

Capa do projeto tbib_splash_screen
Stars
2
Forks
2
Último push (UTC)
14 de abr. de 2023
Status do projeto
Ativo
Michelle Raouf GitHub avatar
GITHUB User

Michelle Raouf ↗

LinguagensDartC++CMakeRubyHTMLCSwiftKotlinObjective-C

Dependências usadas

Lista de dependências 5 itens

README original

Texto original em inglês. Visite o GitHub para a versão atual.

Expandir / recolher 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,
      );