FadeAnimatedSplashScreenText constructor

FadeAnimatedSplashScreenText(
  1. String text, {
  2. TextAlign textAlign = TextAlign.start,
  3. TextStyle? textStyle,
  4. Duration duration = const Duration(milliseconds: 2000),
  5. double fadeInEnd = 0.5,
})

Marks the beginning of fade-out interval, default value = 0.8

Implementation

FadeAnimatedSplashScreenText(
  String text, {
  TextAlign textAlign = TextAlign.start,
  TextStyle? textStyle,
  Duration duration = const Duration(milliseconds: 2000),
  this.fadeInEnd = 0.5,
}) : super(
        text: text,
        textAlign: textAlign,
        textStyle: textStyle,
        duration: duration,
      );