PlutoShadowContainer constructor

const PlutoShadowContainer({
  1. Key? key,
  2. required double width,
  3. required double height,
  4. required Widget child,
  5. EdgeInsetsGeometry padding = const EdgeInsets.symmetric(horizontal: 10),
  6. Color backgroundColor = Colors.white,
  7. Color borderColor = const Color(0xFFA1A5AE),
  8. AlignmentGeometry alignment = Alignment.centerLeft,
})

Implementation

const PlutoShadowContainer({
  super.key,
  required this.width,
  required this.height,
  required this.child,
  this.padding = const EdgeInsets.symmetric(
    horizontal: 10,
  ),
  this.backgroundColor = Colors.white,
  this.borderColor = const Color(0xFFA1A5AE),
  this.alignment = Alignment.centerLeft,
});