FTxContainer.rounded constructor

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

Implementation

const FTxContainer.rounded(
    {Key? key,
    required this.child,
    this.borderRadius,
    this.padding,
    this.borderRadiusAll,
    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})
    : super(key: key);