buildSplashSeperator method

Widget buildSplashSeperator(
  1. BoxConstraints constraints
)

Implementation

Widget buildSplashSeperator(BoxConstraints constraints) {
  return Container(
    height: constraints.maxHeight,
    decoration: const BoxDecoration(
      color: Colors.black,
      boxShadow: [
        BoxShadow(
          color: Colors.black38,
          spreadRadius: 3,
          blurRadius: 3,
          offset: Offset(0, 3), // changes position of shadow
        ),
      ],
    ),
  );
}