loginGradientBackground constant

BoxDecoration const loginGradientBackground

Implementation

static const BoxDecoration loginGradientBackground = BoxDecoration(
  gradient: LinearGradient(
    begin: Alignment.topCenter,
    end: Alignment.bottomCenter,
    stops: [
      0,
      0.4,
      0.55,
    ],
    colors: [
      ConfigConstants.gradient1,
      ConfigConstants.gradient2,
      ConfigConstants.gradient3,
    ],
  ),
);