GradientBackground constructor

const GradientBackground({
  1. Key? key,
  2. List<Color> colors = const [Color(0xFF2196F3), Color(0xFF9C27B0), Color(0xFFFF4081), Color(0xFF00BCD4)],
  3. double speed = 1,
  4. double hueShiftSpeed = 0.02,
  5. List<double>? stops,
  6. Widget? child,
})

Implementation

const GradientBackground({
  super.key,
  this.colors = const [
    Color(0xFF2196F3),
    Color(0xFF9C27B0),
    Color(0xFFFF4081),
    Color(0xFF00BCD4),
  ],
  this.speed = 1,
  this.hueShiftSpeed = 0.02,
  this.stops,
  this.child,
});