FCCNeumorphicCard constructor

const FCCNeumorphicCard({
  1. Key? key,
  2. required Widget child,
  3. ThemeData? theme,
  4. NeumorphicStyle style = NeumorphicStyle.lowered,
  5. EdgeInsets padding = const EdgeInsets.fromLTRB(10, 0, 10, 0),
  6. EdgeInsets innerPadding = const EdgeInsets.all(12),
  7. double? height,
  8. Color? baseColorOverride,
  9. double borderRadiusValue = 24,
  10. bool transparentBackground = true,
  11. double? borderWidth,
  12. Color? borderColor,
  13. double innerBorderWidth = 0,
  14. Color? innerBorderColor,
  15. double innerBorderInset = 10,
  16. double protrusionIntensity = 0.35,
})

Implementation

const FCCNeumorphicCard({
  super.key,
  required this.child,
  this.theme,
  this.style = NeumorphicStyle.lowered,
  this.padding = const EdgeInsets.fromLTRB(10, 0, 10, 0),
  this.innerPadding = const EdgeInsets.all(12),
  this.height,
  this.baseColorOverride,
  this.borderRadiusValue = 24,
  this.transparentBackground = true,
  this.borderWidth,
  this.borderColor,
  this.innerBorderWidth = 0,
  this.innerBorderColor,
  this.innerBorderInset = 10,
  this.protrusionIntensity = 0.35,
});