Home > Mobile >  Flutter widget to display moving (marquee) text
Flutter widget to display moving (marquee) text

Time:08-10

I am hoping to display a string of text in a widget such that the text appears to automatically scroll or move from left to right, similar to what is shown in many media players (such as OBS). In web development, this appears to be known as a marquee effect.

I've looked at animated_text_kit but it doesn't provide this scrolling animation.

I've also tried any_widget_marquee as described in this similar SO post but the package doesn't support sound null safety.

Can anyone provide any recommendations or describe how to achieve this effect?

CodePudding user response:

There is an aptly named package marquee that does exactly this.

CodePudding user response:

you can use this package 

ticker text

  • Related