FLUTTER ECOSYSTEM

the-best-is-best/tbib_splash_screen

初始化

tbib_splash_screen 项目封面
Stars
2
Forks
2
最近推送(UTC)
2023年4月14日
项目状态
未归档
Michelle Raouf GitHub avatar
GITHUB User

Michelle Raouf ↗

语言DartC++CMakeRubyHTMLCSwiftKotlinObjective-C

使用的依赖

依赖清单 5 项

原始 README

以下为英文项目原文快照,最新内容请访问 GitHub。

展开 / 收起项目 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,
      );