buildSplashRight method

Widget buildSplashRight(
  1. BoxConstraints constraints,
  2. bool showSplash
)

Implementation

Widget buildSplashRight(
  BoxConstraints constraints,
  bool showSplash,
) {
  if (showSplash) {
    return AnimatedContainer(
        duration: const Duration(seconds: 1),
        child: Row(
          children: [
            if (splashSeperator) buildSplashSeperator(constraints),
            Expanded(
              child: splash!,
            ),
          ],
        ));
  } else {
    return AnimatedContainer(
      duration: const Duration(seconds: 1),
      child: const SizedBox.shrink(),
    );
  }
}