FxContainer.rounded constructor

const FxContainer.rounded({
  1. Key? key,
  2. Widget? child,
  3. BorderRadius? borderRadius,
  4. EdgeInsetsGeometry? padding,
  5. double? borderRadiusAll,
  6. bool enableBorderRadius = true,
  7. double? paddingAll,
  8. Border? border,
  9. bool bordered = false,
  10. Clip? clipBehavior = Clip.antiAliasWithSaveLayer,
  11. Color? color,
  12. BoxShape shape = BoxShape.circle,
  13. double? width,
  14. double? height,
  15. AlignmentGeometry? alignment,
  16. GestureTapCallback? onTap,
  17. double? marginAll,
  18. EdgeInsetsGeometry? margin,
  19. Color? splashColor,
  20. Color? borderColor,
})

Implementation

const FxContainer.rounded({Key? key,
  this.child,
  this.borderRadius,
  this.padding,
  this.borderRadiusAll,this.enableBorderRadius = true,
  this.paddingAll,
  this.border,
  this.bordered = false,
  this.clipBehavior = Clip.antiAliasWithSaveLayer,
  this.color,
  this.shape = BoxShape.circle,
  this.width,
  this.height,
  this.alignment,
  this.onTap, this.marginAll, this.margin, this.splashColor, this.borderColor})
    : super(key: key);