text_scroll

Creator: coderz1093

Last updated:

Add to Cart

Description:

text scroll

text_scroll #
TextScroll Flutter widget adds text auto-scrolling functionality (marquee text).

Features #

endless and bouncing modes
delay and pause between rounds
max number of rounds
custom velocity
style and textAlign support

Getting started #
To use this package, add text_scroll as a dependency in your pubspec.yaml file.
Usage #
Minimal example:
TextScroll('This is the sample text for Flutter TextScroll widget. ')
copied to clipboard
Custom settings:
TextScroll(
'This is the sample text for Flutter TextScroll widget. ',
mode: TextScrollMode.bouncing,
velocity: Velocity(pixelsPerSecond: Offset(150, 0)),
delayBefore: Duration(milliseconds: 500),
numberOfReps: 5,
pauseBetween: Duration(milliseconds: 50),
style: TextStyle(color: Colors.green),
textAlign: TextAlign.right,
selectable: true,
)
copied to clipboard
See also #

github repo
pub.dev package
api reference

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.