WxDrivenAnchorStyle constructor

const WxDrivenAnchorStyle({
  1. EdgeInsetsGeometry? margin,
  2. EdgeInsetsGeometry? padding,
  3. double? scale,
  4. double? opacity,
  5. ShapeBorder? overlayShape,
  6. Size? overlayExtent,
  7. Color? overlayColor,
  8. double? overlayOpacity,
  9. Color? textColor,
  10. TextStyle? textStyle,
  11. TextAlign? textAlign,
  12. Color? iconColor,
  13. double? iconOpacity,
  14. double? iconSize,
  15. WxAnchorStyle? focusedStyle,
  16. WxAnchorStyle? hoveredStyle,
  17. WxAnchorStyle? pressedStyle,
  18. WxAnchorStyle? disabledStyle,
  19. bool? inherits,
})

Create a rectangle shaped WxDrivenAnchorStyle.

Implementation

const WxDrivenAnchorStyle({
  super.margin,
  super.padding,
  super.scale,
  super.opacity,
  super.overlayShape,
  super.overlayExtent,
  super.overlayColor,
  super.overlayOpacity,
  super.textColor,
  super.textStyle,
  super.textAlign,
  super.iconColor,
  super.iconOpacity,
  super.iconSize,
  this.focusedStyle,
  this.hoveredStyle,
  this.pressedStyle,
  this.disabledStyle,
  this.inherits,
});