text_scroll 0.2.0 copy "text_scroll: ^0.2.0" to clipboard
text_scroll: ^0.2.0 copied to clipboard

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

text_scroll #

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

demo

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. ')

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,
    )

See also #

139
likes
130
pub points
97%
popularity

Publisher

verified publisheryurii-khi.com

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

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on text_scroll