SmfContainer.transparent constructor

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

Implementation

const SmfContainer.transparent({
  Key? key,
  this.child,
  this.borderRadius,
  this.padding,
  this.borderRadiusAll,
  this.paddingAll,
  this.border,
  this.bordered = false,
  this.clipBehavior,
  this.color = Colors.transparent,
  this.shape = BoxShape.rectangle,
  this.width,
  this.height,
  this.alignment,
  this.enableBorderRadius = true,
  this.onTap,
  this.marginAll,
  this.margin,
  this.splashColor,
}) : super(key: key);