LeftRightContainer constructor

const LeftRightContainer({
  1. Key? key,
  2. required Widget start,
  3. required Widget end,
  4. required double fixedSizeWidth,
  5. required double minSideWidth,
  6. FixedSide fixedSide = FixedSide.start,
  7. double spacing = 0,
  8. double arrowTopPosition = 50,
  9. bool initiallyCollapsed = false,
  10. bool autoShowTwoSidesIfPossible = true,
  11. bool hideArrowIfTwoSidesVisible = false,
  12. bool showVerticalDivider = true,
  13. LeftRightContainerStyle style = const LeftRightContainerStyle(),
})

Implementation

const LeftRightContainer({
  super.key,
  required this.start,
  required this.end,
  required this.fixedSizeWidth,
  required this.minSideWidth,
  this.fixedSide = FixedSide.start,
  this.spacing = 0,
  this.arrowTopPosition = 50,
  this.initiallyCollapsed = false,
  this.autoShowTwoSidesIfPossible = true,
  this.hideArrowIfTwoSidesVisible = false,
  this.showVerticalDivider = true,
  this.style = const LeftRightContainerStyle(),
});