NeuContainer constructor

const NeuContainer({
  1. Key? key,
  2. void onPressed()?,
  3. Widget? child,
  4. Color? color,
  5. Gradient? gradient,
  6. double radius = 20,
  7. bool inset = false,
  8. TapMode tapMode = TapMode.none,
  9. EdgeInsets padding = const EdgeInsets.all(8),
  10. BoxShape shape = BoxShape.rectangle,
  11. required Color boxShadowColor,
  12. bool? enabled,
  13. bool onStart = false,
})

Implementation

const NeuContainer(
    {super.key,
    this.onPressed,
    this.child,
    this.color,
    this.gradient,
    this.radius = 20,
    this.inset = false,
    this.tapMode = TapMode.none,
    this.padding = const EdgeInsets.all(8),
    this.shape = BoxShape.rectangle,
    required this.boxShadowColor,
    this.enabled,
    this.onStart = false});