FLUTTER ECOSYSTEM

the-best-is-best/tbib_splash_screen

प्रारंभ करें

tbib_splash_screen प्रोजेक्ट कवर
Stars
2
Forks
2
अंतिम पुश (UTC)
14 अप्रैल 2023
प्रोजेक्ट स्थिति
सक्रिय
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,
      );