Reputation: 4987
Is that possible to marquee image in a flutter ?
I need to move an image from left to right continually
Upvotes: 3
Views: 1241
Reputation: 5873
Check my gist autoscroll_text.dart
Usage:
AutoScrollText(
items: [
Text('Hello world '),
Text('Lorem ipsum dolor sit amet')
],
)
Upvotes: 2