FuzzyCirclesBackground constructor
const
FuzzyCirclesBackground({ - Key? key,
- int circleCount = 5,
- RangeValues radiusRange = const RangeValues(50, 180),
- double softness = 80,
- double speed = 5,
- double parallaxScale = 2.0,
- double intensity = 1.7,
- List<Color> colors = const [Colors.cyanAccent, Colors.purpleAccent, Colors.blue],
- Color backgroundColor = Colors.transparent,
- Widget? child,
- int? seed,
- double driftStrength = 0.15,
- double bounceDamping = 0.98,
- double falloff = 1.6,
- double spacingFactor = 1.2,
})
Implementation
const FuzzyCirclesBackground({
super.key,
this.circleCount = 5,
this.radiusRange = const RangeValues(50, 180),
this.softness = 80,
this.speed = 5,
this.parallaxScale = 2.0,
this.intensity = 1.7,
this.colors = const [
Colors.cyanAccent,
Colors.purpleAccent,
Colors.blue
],
this.backgroundColor = Colors.transparent,
this.child,
this.seed,
this.driftStrength = 0.15,
this.bounceDamping = 0.98,
this.falloff = 1.6,
this.spacingFactor = 1.2,
});