the-best-is-best/tbib_splash_screen
初始化
- Stars
- 2
- Forks
- 2
- 最近推送(UTC)
- 2023年4月14日
- 專案狀態
- 未封存
語言DartC++CMakeRubyHTMLCSwiftKotlinObjective-C
使用的依賴
依賴清單 5 項
- flutter
{"sdk":"flutter"} - animated_text_kit
^4.2.2 - lottie
^2.3.2 - flutter_test開發依賴
{"sdk":"flutter"} - flutter_lints開發依賴
^2.0.0
原始 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,
);