Examples:
LeftRightContainer(
// textDirection: TextDirection.ltr,
fixedSide: FixedSide.end,
fixedSizeWidth: 200,
initiallyCollapsed: true,
hideArrowIfTwoSidesVisible: false,
autoShowTwoSidesIfPossible: true,
showVerticalDivider: true,
end: SizedBox(
height: 300,
child: Text("End"),
),
start: SizedBox(
height: 300,
child: Text("Start"),
),
minSideWidth: 400,
spacing: 10,
arrowTopPosition: 30,
backgroundColor: Colors.yellow,
startBackgroundColor: Colors.red,
endBackgroundColor: Colors.green,
minHeight: 300,
),

