AwsThemeIndicatorShowing constructor

AwsThemeIndicatorShowing({
  1. double? width,
  2. double? height,
  3. Color? initStatecolor = CupertinoColors.activeBlue,
  4. Color? changeStatecolor = CupertinoColors.destructiveRed,
  5. Gradient? initStateGradient,
  6. Gradient? changeStateGradient,
  7. EdgeInsetsGeometry? margin,
  8. Color? borderColor,
  9. bool border = true,
  10. bool shadow = true,
  11. AwsAnimation initStateAnimation = AwsAnimation.zoomIn,
  12. AwsAnimation changeStateAnimation = AwsAnimation.bounceInUp,
})

Sets the theme of the indicator AwsThemeIndicatorShowing.

Implementation

AwsThemeIndicatorShowing({
  this.width,
  this.height,
  this.initStatecolor = CupertinoColors.activeBlue,
  this.changeStatecolor = CupertinoColors.destructiveRed,
  this.initStateGradient,
  this.changeStateGradient,
  this.margin,
  this.borderColor,
  this.border = true,
  this.shadow = true,
  this.initStateAnimation = AwsAnimation.zoomIn,
  this.changeStateAnimation = AwsAnimation.bounceInUp,
});