Docs
Text Reveal Swirl

Text Reveal Swirl

A text reveal animation that adds a swirl effect with blur effect.

Status: initializing

Installation

Copy and paste the following code into your project.

Please find it here

Update the import paths to match your project setup.

Usage

EnhancedTextRevealEffect(
  text: 'Flutter is pure magic! ✨',
  trigger: _isAnimating,
  strategy: SwirlFloatStrategy(
    yOffset: -200.0,
    maxXDeviation: 60.0,
    maxBlur: 10.0,
    enableBlur: true,
    curveIntensity: 0.7,
    synchronizeAnimation: true, // More pronounced S-curve
  ),
  unit: AnimationUnit.character | AnimationUnit.word,
);