SimpleWidget constructor

SimpleWidget({
  1. Key? key,
  2. AlignmentGeometry? alignment,
  3. EdgeInsetsGeometry? padding,
  4. Color? color,
  5. Decoration? decoration,
  6. Decoration? foregroundDecoration,
  7. double? width,
  8. double? height,
  9. BoxConstraints? constraints,
  10. EdgeInsetsGeometry? margin,
  11. Matrix4? transform,
  12. AlignmentGeometry? transformAlignment,
  13. Widget? child,
  14. Clip clipBehavior = Clip.none,
  15. GestureTapCallback? onTap,
  16. GestureTapCallback? onDoubleTap,
  17. GestureLongPressCallback? onLongTap,
  18. void onBuild()?,
})

Implementation

SimpleWidget(
    {super.key,
    super.alignment,
    super.padding,
    super.color,
    super.decoration,
    super.foregroundDecoration,
    super.width,
    super.height,
    super.constraints,
    super.margin,
    super.transform,
    super.transformAlignment,
    super.child,
    super.clipBehavior = Clip.none,
    this.onTap,
    this.onDoubleTap,
    this.onLongTap,
    this.onBuild});