slide method

Widget slide({
  1. Offset offset = const Offset(0, 0.1),
  2. Duration duration = const Duration(milliseconds: 1000),
  3. Curve curve = Curves.easeInOut,
})

Implementation

Widget slide({
  Offset offset = const Offset(0, 0.1),
  Duration duration = const Duration(milliseconds: 1000),
  Curve curve = Curves.easeInOut,
}) => AnimatedSlide(
  offset: offset,
  duration: duration,
  curve: curve,
  child: this,
);