AnimatedOutlineStyles constructor

const AnimatedOutlineStyles({
  1. ShapeBorder? shape = const StadiumBorder(),
  2. Color borderColor = Colors.blue,
  3. double borderWidth = 2.0,
  4. EdgeInsetsGeometry? contentPadding,
  5. Color? backgroundColor,
  6. Size? maxSize,
  7. Size? minSize,
  8. List<Color>? animationColors,
  9. Duration animationDuration = const Duration(seconds: 2),
  10. AnimationDirection animationDirection = AnimationDirection.ltr,
  11. double glowBlurRadius = 1.0,
})

AnimatedOutline Button Styles

Implementation

const AnimatedOutlineStyles({
  this.shape = const StadiumBorder(),
  this.borderColor = Colors.blue,
  this.borderWidth = 2.0,
  this.contentPadding,
  this.backgroundColor,
  this.maxSize,
  this.minSize,
  this.animationColors,
  this.animationDuration = const Duration(seconds: 2),
  this.animationDirection = AnimationDirection.ltr,
  this.glowBlurRadius = 1.0,
});