the-best-is-best/tbib_splash_screen
初期化
- Stars
- 2
- Forks
- 2
- 最終プッシュ(UTC)
- 2023/04/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,
);