GlowContainer constructor
const
GlowContainer({ - Key? key,
- required Widget child,
- Color? glowColor,
- double glowIntensity = 0.5,
- Color? backgroundColor,
- double borderRadius = 16,
- EdgeInsetsGeometry? padding,
- EdgeInsetsGeometry? margin,
- bool isPulsing = false,
- Duration pulseDuration = const Duration(milliseconds: 1500),
- bool isNeon = false,
- double? width,
- double? height,
- bool glowOnHover = false,
- VoidCallback? onTap,
})
Implementation
const GlowContainer({
super.key,
required this.child,
this.glowColor,
this.glowIntensity = 0.5,
this.backgroundColor,
this.borderRadius = 16,
this.padding,
this.margin,
this.isPulsing = false,
this.pulseDuration = const Duration(milliseconds: 1500),
this.isNeon = false,
this.width,
this.height,
this.glowOnHover = false,
this.onTap,
});