animated_circular_text 1.0.0
animated_circular_text: ^1.0.0 copied to clipboard
A Flutter widget that displays animated circular text.
🌀 animated_circular_text #
A customizable and smooth animated circular text widget for Flutter. Letters rotate around a circle, and tapping triggers different animation effects like speed up, slow down, pause, or go bonkers.
optional if you add GIF later
✨ Features #
- Rotating circular text animation
- Tap interactions to:
- Speed up
- Slow down
- Pause
- Go bonkers
- Fully customizable:
- Diameter
- Font size
- Animation duration
- Text content
- Perfect for loading screens, banners, or creative UI
🚀 Getting Started #
➕ Installation #
Add this to your pubspec.yaml:
dependencies:
animated_circular_text: ^1.0.0
Usage: import 'package:animated_circular_text/animated_circular_text.dart';
class MyWidget extends StatelessWidget { @override Widget build(BuildContext context) { return Center( child: CircularText( text: "Flutter is Awesome!", diameter: 200, fontSize: 20, spinDuration: Duration(seconds: 15), onHover: CircularTextHoverEffect.speedUp, // Tap triggers effect ), ); } }
Try it out, clone the repo and the run the example: git clone https://github.com/yourusername/animated_circular_text.git cd animated_circular_text/example flutter run