flipH method

T flipH({
  1. Duration? delay,
  2. Duration? duration,
  3. Curve? curve,
  4. double? begin,
  5. double? end,
  6. Alignment? alignment,
  7. double? perspective,
})

Adds a flipH extension to AnimateManager (Animate and AnimateList). This is identical to the flip extension, except it always uses direction = Axis.horizontal.

Implementation

T flipH({
  Duration? delay,
  Duration? duration,
  Curve? curve,
  double? begin,
  double? end,
  Alignment? alignment,
  double? perspective,
}) =>
    addEffect(FlipEffect(
      delay: delay,
      duration: duration,
      curve: curve,
      begin: begin,
      end: end,
      alignment: alignment,
      perspective: perspective,
      direction: Axis.horizontal,
    ));