flutter_marquee_plus 1.0.3
flutter_marquee_plus: ^1.0.3 copied to clipboard
A lightweight and customizable marquee (scrolling text) widget for Flutter.
flutter_marquee_plus #
A lightweight and customizable marquee (scrolling text) widget for Flutter.

Features #
- Scrolls only when text overflows
- Adjustable velocity
- Supports animation curves
- Supports alwaysScroll mode
- Lightweight and easy to integrate
Usage #
import 'package:flutter_marquee_plus/flutter_marquee_plus.dart';
MarqueePlus(
text: 'This is a very long text that scrolls smoothly',
velocity: 100,
alwaysScroll: false, // optional: false = only if overflow, true = always scroll
style: TextStyle(fontSize: 18),
)