flutter_marquee_plus

A lightweight and customizable marquee (scrolling text) widget for Flutter.

Marquee demo

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: 50,
  alwaysScroll: false, // optional: false = only if overflow, true = always scroll
  style: TextStyle(fontSize: 18),
)