LeftRightContainer constructor
const
LeftRightContainer({
- Key? key,
- required Widget start,
- required Widget end,
- required double fixedSizeWidth,
- required double minSideWidth,
- FixedSide fixedSide = FixedSide.start,
- double spacing = 0,
- double arrowTopPosition = 50,
- bool initiallyCollapsed = false,
- bool autoShowTwoSidesIfPossible = true,
- bool hideArrowIfTwoSidesVisible = false,
- bool showVerticalDivider = true,
- 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(),
});