slideOutToLeft method

Widget slideOutToLeft({
  1. double? value,
  2. bool fractional = false,
})

Applies a TranslateEffect to a Widget with a default animation to slide this widget out to the left.

Implementation

Widget slideOutToLeft({
  double? value,
  bool fractional = false,
}) =>
    slideOut(
      Offset(value ?? (fractional ? -1 : -_kDefaultSlideOffset), 0),
      fractional: fractional,
    );