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