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,
      );