Midhilaj
Midhilaj

Reputation: 4987

How to make marquee flutter image widgets

Is that possible to marquee image in a flutter ?
I need to move an image from left to right continually

Upvotes: 3

Views: 1241

Answers (1)

Putra Ardiansyah
Putra Ardiansyah

Reputation: 5873

Check my gist autoscroll_text.dart

Usage:

AutoScrollText(
                items: [
                  Text('Hello world '),
                  Text('Lorem ipsum dolor sit amet')
                ],
              )

Upvotes: 2

Related Questions