over_flow_animation 1.1.0
over_flow_animation: ^1.1.0 copied to clipboard
over_flow_animation package.
⏩A Flutter widget that scrolls its child widget infinitely. It provides many customization options, such as custom scroll directions, durations, curves, and pauses after each round.
If you appreciate this widget, please show your support by starring the repo.
Usage This is a minimalistic example:
OverFlowAnimation( child: const Text('Hi i am flutter developer'), ); And here's a piece of code that makes full use of the OverFlowAnimations's customizable:
SizedBox(
width: 50,
child: OverFlowAnimation(
backCurve: Curves.linear,
backDuration: const Duration(milliseconds: 1),
startCurve: Curves.linear,
pauseDuration: const Duration(milliseconds: 1),
animationDuration: const Duration(seconds: 3),
direction: Axis.horizontal,
child: const Text('Hi i am flutter developer'),
),
),
properties Type: Required: Default: 1.backCurve: Curve false Curves.bounceInOut 2.backDuration: Duration false Duration(microseconds: 800) 3.startCurve: Curve false Curves.linear 4.pauseDuration: Duration false Duration(microseconds: 800) 5.animationDuration: Duration false Duration(milliseconds: 6000) 6.direction: Axis false Axis.horizontal 7.child: widget true /