text_marquee 0.0.2 copy "text_marquee: ^0.0.2" to clipboard
text_marquee: ^0.0.2 copied to clipboard

Text marquee is a widget for Flutter that scrolls text infinitely. You can customize the direction, style, and animation of the text.

example/example.md

Basic example #

Here is simple example you can use to create with this package:

Loading basic_example.gif ... [6.35MB]
TextMarquee(
  '"Stay close to anything that makes you glad you are alive." -Hafez',
  spaceSize: 72,
  style: const TextStyle(
    color: Colors.white,
    fontWeight: FontWeight.w600,
    fontSize: 24
  ),
)

If you want to use languages whose letters are arranged from right to left (such as Persian), you must set the rtl value equal to true:

TextMarquee(
  'به هر چیزی که شما را از اینکه زنده هستید، خوشحال می کند، نزدیک باشید." -حافظ"',
  spaceSize: 72,
  rtl: true,
  style: const TextStyle(
    color: Colors.white,
    fontWeight: FontWeight.w600,
    fontSize: 24
  ),
)
18
likes
160
points
786
downloads

Publisher

unverified uploader

Weekly Downloads

Text marquee is a widget for Flutter that scrolls text infinitely. You can customize the direction, style, and animation of the text.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on text_marquee