RenderSlidable constructor
RenderSlidable({
- required SlideController controller,
- required Axis axis,
- double maxSlideThreshold = 0.5,
- List<
RenderBox> ? children,
Implementation
RenderSlidable({
required SlideController controller,
required Axis axis,
double maxSlideThreshold = 0.5,
List<RenderBox>? children,
}) : _controller = controller,
_axis = axis,
_maxSlideThreshold = maxSlideThreshold {
addAll(children);
}