Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Text overflow animation

Tags:

flutter

dart

How can I accomplish this kind of text animation with flutter when text is longer than it's container?

text oveeflow animation example

thanks

like image 427
Roi Snir Avatar asked Aug 07 '26 16:08

Roi Snir


1 Answers

You may try this package.

Example:

  Marquee(
  text: 'Some sample text that takes some space.',
  style: TextStyle(fontWeight: FontWeight.bold),
  scrollAxis: Axis.horizontal,
  crossAxisAlignment: CrossAxisAlignment.start,
  blankSpace: 20.0,
  velocity: 100.0,
  pauseAfterRound: Duration(seconds: 1),
  startPadding: 10.0,
  accelerationDuration: Duration(seconds: 1),
  accelerationCurve: Curves.linear,
  decelerationDuration: Duration(milliseconds: 500),
  decelerationCurve: Curves.easeOut,
)
like image 63
Darish Avatar answered Aug 10 '26 06:08

Darish