ticker_text

Creator: coderz1093

Last updated:

Add to Cart

Description:

ticker text

ticker_text for Flutter #

Straightforward widget scroller with minimal dependencies.


Features #

optional control with TickerTextController,
specifying scrolling speed and curves,
setting custom durations,
and more.

Example #
SizedBox(
width: 50, // constrain the parent width so the child overflows and scrolling takes effect
child: TickerText(
// default values
controller: tickerTextController, // this is optional
scrollDirection: Axis.horizontal,
speed: 20,
startPauseDuration: const Duration(seconds: 10),
endPauseDuration: const Duration(seconds: 10),
returnDuration: const Duration(milliseconds: 800),
primaryCurve: Curves.linear,
returnCurve: Curves.easeOut,
child: Text("Very long sentence..."),
),
);
copied to clipboard
API Reference #
Detailed API documentation can be found on pub.dev.
License #
This project is MIT licensed.

License

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

Customer Reviews

There are no reviews.