LeftRightContainerStyle constructor

const LeftRightContainerStyle({
  1. Color? startBackgroundColor,
  2. Color? endBackgroundColor,
  3. Color? backgroundColor,
  4. EdgeInsets startPadding = const EdgeInsets.all(5),
  5. EdgeInsets endPadding = const EdgeInsets.all(5),
  6. Color? arrowButtonBackgroundColor,
  7. Color? arrowIconColor,
  8. double arrowWidth = 20,
  9. double arrowHeight = 30,
  10. BorderRadius? arrowBorderRadius,
  11. Duration animationDuration = const Duration(milliseconds: 250),
  12. Curve animationCurve = Curves.fastOutSlowIn,
})

Implementation

const LeftRightContainerStyle({
  this.startBackgroundColor,
  this.endBackgroundColor,
  this.backgroundColor,
  this.startPadding = const EdgeInsets.all(5),
  this.endPadding = const EdgeInsets.all(5),
  this.arrowButtonBackgroundColor,
  this.arrowIconColor,
  this.arrowWidth = 20,
  this.arrowHeight = 30,
  this.arrowBorderRadius,
  this.animationDuration = const Duration(milliseconds: 250),
  this.animationCurve = Curves.fastOutSlowIn,
});